Hi guys,
I have this in the Javascript section of my layout:
But it doesn't work on Firefox. No move at all.
So, how can I make it work without doing a <body onload="... ?
I don't want to have the code in the body tag because it would make IE wait before the page is fully loaded, which is bad because I want the anchor to be targeted before the images are finished to be downloaded.
Thanks
I have this in the Javascript section of my layout:
Code:
window.onload = "document.location.href = document.location + '#myanchor'
So, how can I make it work without doing a <body onload="... ?
I don't want to have the code in the body tag because it would make IE wait before the page is fully loaded, which is bad because I want the anchor to be targeted before the images are finished to be downloaded.
Thanks