I have a simple JQuery Slider to rotate through tabs to display different blog story headlines and pictures. The problem is that if you're viewing the page anywhere beneath the slider, each time the slider rotates, it automatically moves the page so that you're looking at the slider again.
This does not happen if you're above the blog slider.
Please help!
My code:
$(document).ready(function(){
$("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 8000, false);
$("#featured").hover(
function() {
$("#featured").tabs("rotate",0,false);
},
function() {
$("#featured").tabs("rotate",8000,false);
}
);