Set Active Tab In Tab Nav Coming From Another Link Bootstrap
EDIT : This is not my Main Navigation Bar, it is a Nav Bar inside a Form. This Tab Nav only exists in resources-terms.html I have a Tab Navigation located at resources-terms.html
Solution 1:
What you're looking for (navigating to a particular tab via location.hash
value) will not happen on it's own. You'll need to handle this in your resources-terms.html
file.
After the page is completely loaded, read the hash and set the corresponding tab active as shown below:
$(document).ready(function(){
if (location.hash) {
$('a[href=' + location.hash + ']').tab('show');
}
});
Post a Comment for "Set Active Tab In Tab Nav Coming From Another Link Bootstrap"