Skip to content

Instantly share code, notes, and snippets.

@hemraj7171
Created February 27, 2017 11:04
Show Gist options
  • Save hemraj7171/f39b3de376713766aaac83a69c2ccfe2 to your computer and use it in GitHub Desktop.
Save hemraj7171/f39b3de376713766aaac83a69c2ccfe2 to your computer and use it in GitHub Desktop.
Bootstrap Tab Active on Hover
jQuery(document).ready(function ($) {
$('.nav-tabs > li > a').hover(function() {
$(this).tab('show');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment