Hi,
quick one -
if as a redirect you use setTimeout with window.top.location.href=...
this means if you've gone through the landing/redirect page to get where you are going and hit back you just end up back on that page and the timeout is one second so you have to time clicking back again quite well
if you don't want to end up back where you started.
Is there any reason anyone can think of why you wouldn't use window.replace instead of window.location.href=
I want to suggest it but I don't want to look silly, I'm not really a programmer or scripter but this redirect has bugged me a couple of times. Only things that immediately spring to mind is IE supporting this incorrectly (only tested my solution in firebug/firefox), a reasonable design/functionality decision (the redirect page is also the logout page as well as the first page you get to when you navigate to the app via a certain way). Am expecting there is some glaringly obvious reason why you wouldn't do this and they'd be all patronising when I suggest it
quick one -
if as a redirect you use setTimeout with window.top.location.href=...
this means if you've gone through the landing/redirect page to get where you are going and hit back you just end up back on that page and the timeout is one second so you have to time clicking back again quite well

Is there any reason anyone can think of why you wouldn't use window.replace instead of window.location.href=
I want to suggest it but I don't want to look silly, I'm not really a programmer or scripter but this redirect has bugged me a couple of times. Only things that immediately spring to mind is IE supporting this incorrectly (only tested my solution in firebug/firefox), a reasonable design/functionality decision (the redirect page is also the logout page as well as the first page you get to when you navigate to the app via a certain way). Am expecting there is some glaringly obvious reason why you wouldn't do this and they'd be all patronising when I suggest it
