<html>
<body>
<h1>The Window Location Object</h1>
<h2>The href Property</h2>
<p>Click the button to set the href value to https://www.w3schools.com.</p>
<button onclick="myFunction()">Take me to w3schools.com</button>
<script>
function myFunction() {
location.href = "../index.html";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_loc_href_set by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:29 GMT -->
</html>