I\'m developing a web page in which I\'m using Twitter\'s Bootstrap Framework and their Bootstrap Tabs JS. It works great except for a few minor issues, one of which is I do
you could trigger a click event on the corresponding tab link:
click
$(document).ready(function(){ if(window.location.hash != "") { $('a[href="' + window.location.hash + '"]').click() } });