vote up 1 vote down star

I have a page on which, periodically, I must change the URL to incorporate some GET parameters in the background using JavaScript, such that the page refreshes using the new GET parameters.

So, for example, I'll periodically do

window.location.href = window.location.host + '?' + ss;

or

window.location.search = '?' + ss;

Where 'ss' is the new query string, e.g.: "foo=3&bar=1". These 'refreshes' will happen when the window is in the background.

My problem is that, on IE browsers the refresh causes the window to steal focus. Is there anyway to avoid or circumvent this?

flag
Which version of IE? Could you just change window.location.hash and use AJAX to update the page? – EricLaw -MSFT- Jul 8 at 19:25
I actually need to reload the page, with the new GET parameters. I saw this behavior on IE 6 & 7, but haven't tested 8. – Kyle Jul 11 at 15:23

3 Answers

vote up 1 vote down

I would definetely use Ajax. Refreshing the content this way is a better user experience, especially due to its asynchronous manner. Also, not using parameters in the URL is always a good practice if your site aims to have good SERP results.

link|flag
vote up 1 vote down

Perhaps it would be worthwhile to use a AJAX call to get the new data, instead of reloading a frame?

link|flag
vote up 0 vote down

Does the whole page have to refresh? I would think that if you IFRAMED the content it wouldnt steal focus. I've never intentionally tried this with a background window but I find it curious that IE does that. Which version is doing this as I'd like to replicate it.

link|flag
I saw this behavior on IE 6 & 7, but haven't tested 8. Easy to replicate with a single line of JS called after onload. Something like the following: setTimeout(function(){window.location.replace('google.com')}, 5000); The window will steal focus when it calls "replace" on IE. Wild. – Kyle Jul 11 at 15:27
Obviously 'google.com' there should by preceded by http...(my comment was sanitized by SO) – Kyle Jul 11 at 15:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.