← Back to Main Page

URL Opening Methods

Enter a URL below and use the buttons to test different opening methods.

HTML Link Methods

Regular Link <a href="https://example.com">
Target _blank <a href="https://example.com" target="_blank">
Target _self <a href="https://example.com" target="_self">
Target _top <a href="https://example.com" target="_top">

JavaScript Methods

window.location.href = 'https://example.com'
window.location.assign('https://example.com')
window.location.replace('https://example.com')
window.open('https://example.com')
window.open('https://example.com', '_blank')
window.open('https://example.com', '_self')
location.href = 'https://example.com'
document.location = 'https://example.com'