Advertisement
afsarwebdev

JS Bootstrap Tab Nav On hover content show

Jul 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. //Bootstrap Tab Hover Content Show
  2. $('.nav > li ').hover(function() {
  3. if ($(this).hasClass('hoverblock'))
  4. return;
  5. else
  6. $(this).find('a').tab('show');
  7. });
  8.  
  9. $('.nav > li').find('a').click(function() {
  10. $(this).parent()
  11. .siblings().addClass('hoverblock');
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement