Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .link:hover { text-decoration: underline; color: blue; cursor: pointer; } </style> </head> <body> <h1>Hyperlink Example with JavaScript</h1> <p>Visit our website</p> <a href="https://w3docs.com" onclick="window.open(this.href, '_blank', 'width=500,height=500'); return false;" class="link">W3docs</a> </body> </html>