<html>
<body>
<p>Click the button to alert the location of the parent window when opening the new window.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
window.open("", "", "width=200, height=100");
alert(window.parent.location);
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_win_parent by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 14:45:46 GMT -->
</html>