I am encountering an issue with my tabs setup. Each tab has a different height and there is a Row on top of the tabs.
You can see the problem in action on this JSFiddle.
Whenever I switch from a tab with greater height to a tab with less height, the page jumps back to the Top.
I am utilizing Bootstrap Tabs for this setup.
I attempted removing the data-toggle="tab"
attribute from
<li><a href="#caseTab" data-toggle="tab">Case</a></li>
and instead loading the Tab using jQuery:
$('.nav-tabs li a').click(function (e) {
e.preventDefault();
$(this).tab('show');
return false;
});
I also tried incorporating the recommendation found online to include return false;
Check out more suggestions on this topic here:
Can someone provide assistance in addressing this issue?