I'm making mock ups for a flash app using HTML pages - I'm using HTML pages to demonstrate it inside a browser, plus it looks better pixel for pixel, and I'm using jQuery for rich animations on some pages/slides.
I'm using normal <a> tags for my buttons which navigate through the HTML pages/slides.
But if I have scrolled halfway down the page and click on a button at the bottom of the page - when it goes to the next HTML page/slide it jumps back to the top of the page - this is obviously going to happen.
Is there any javascript or tricks that can prevent all <a> tags from jumping to the top of the page when navigating though my HTML pages/slides. Or even better, if I could give my <a> tags a class so it doesn't interfere with my jQuery animations - because some use <a> tags.
Thanks in advance!
-------------------------UPDATE-------------------------
Sorry, I think I explained it wrong.
My html pages are like so...
page-1.html
page-2.html
page-3.html
page-4.html
page-5.html
I'm not actually using jquery or javascript to navigate through my pages/slides.
When I mean slides, I mean just my pages, which is confusing sorry.
So when it jumps to page-2.html from page-1.html - it always jumps to top.
My a tags are using full href's <a href="page-2.html" class="stop-jumping" title="Page 2"><img ... /></a>
So I'm after something to include in my head of every HTML page which stops my page from moving when navigating using <a> tags.
Thanks again!