Has anyone had the issue where some versions IE7 and 9beta will load a page scrolled to the bottom? This only happens when clicking from the main nav, not directly inputting the url. Here's an example
How would I add a scrollTop function to each main nav link via jQuery? Would that be an acceptable workaround?
As a workaround, you could add this to each page:
$(document).ready(function() {
$(document).scrollTop(0);
});
You wouldn't be able to add this to the links, as the script needs to run after the page load. This also feels hacky without knowing what is causing the problem, but with IE, I would rather hack sometimes than know...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With