
Originally Posted by
clueful
Firebug indicates that the page is failing to load three different script files.
I'd fix that first.
"NetworkError: 404 Not Found - http://imaxxo.net/stbaldo/script/sprite/scripts/jquery-1.3.2.min.js"
jquery....min.js
"NetworkError: 404 Not Found - http://imaxxo.net/stbaldo/script/footer/foot.js"
foot.js
"NetworkError: 404 Not Found - http://imaxxo.net/stbaldo/script/footer/head.js"
Yes, but I don't think that matters here. See my previous post in this thread for the solution. But you're right, those should be fixed. Probably just have those tags removed, as the page doesn't appear to need those files.
I did finally find where the window.location thing was coming from. It's on a separate page, the hard coded source of the iframe (index-move.html):
Code:
<body onLoad="window.location.replace('move.html#section2')"; >
This would probably work in Firefox if you made it:
Code:
<body onLoad="window.location.replace('move.html#section3')"; >
But that would throw off all the others. My solution - add:
Code:
<script type="text/javascript">
jQuery(function($){
$('a[href=#section2]').eq(0).click();
});
</script>
to the end of the real target page (move.html). Put it right before the closing </body> tag. It should work. If not, do it anyway and let me check the page to see what the problem is.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks