Jump to content

Open new url, same window?


c0nfus3d1

Recommended Posts

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!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.