In this tutorial we will see how to Open Link in New Window using JavaScript, window.open method of JavaScript is used for this purpose.
Table of Contents
HTML Code
HTML Code is given below.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Open Link in New Window using JavaScript</title>
</head>
<body>
<h1>HowToCodeSchool.com</h1>
<button onclick="openLink();">Open Link</button>
</body>
</html>
JavaScript Code
JavaScript Code is given below, In this code we have used window.open method, window.open method loads the url in new tab or window.
<script>
function openLink() {
window.open("https://www.howtocodeschool.com/", "newwindow", "status=1,fullscreen=1");
}
</script>
Demo
Video Tutorial
Watch video tutorial on how to Open Link in New Window using JavaScript.
Post a Comment