I have set up tabbing but when I click on a tab it shows the tabbed content, but it also takes me to the top of the page, which I don't want it to.
Here is my code...
$('.team-tab1').click(function() {
$('#team-tab2-content,#team-tab3-content').css('display', 'none');
$('#team-tab1-content').fadeIn();
$(this).addClass('active');
var width = $(this).outerWidth();
$(this).children().css('left',(width/2) - 7);
$('.team-tab2,.team-tab3').removeClass('active');
return false;
});
Thanks for any help, C