c0nfus3d1 Posted July 14, 2011 Share Posted July 14, 2011 I'm working in jQuery, so not sure if this is the right forum, but here's the deal: I open a window using the following code: <script type="text/javascript"> $(document).ready(function() { var w = screen.width; var h = screen.height; var centeredY = (screen.height - h)/2; var centeredX = (screen.width - w)/2; window.open('$url', 'myWindow', 'height=' + h + ',width=' + w + ',toolbar=0' + ',scrollbars=0' + ',status=0' + ',resizable=1' + ',location=1' + ',menuBar=0' + ',left=' + centeredX + ',top=' + centeredY).focus(); }); </script> After that, I'd like to change the URL of that same window, so I use the same code, but with a different $url .. Leaving the window name the same. Yet, it opens in a new window [in Firefox] Is there any way to access the SAME window, and not open another one?? Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/242017-open-new-url-same-window/ Share on other sites More sharing options...
.josh Posted July 15, 2011 Share Posted July 15, 2011 You have to assign the window.open to a variable and so that you can reference it. Example: // open the window, assigning the reference to variable var myWindow = window.open(...arguments here...); // change the URL of the window myWindow.location.href = 'new url here'; Quote Link to comment https://forums.phpfreaks.com/topic/242017-open-new-url-same-window/#findComment-1242941 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.