Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. jQuery(document).ready(function($){
  2.  
  3. // Allow Page URL to activate a tab's ID
  4. var taburl = document.location.toString();
  5. if( taburl.match('#') ) {
  6. $('.nav-tabs a[href=#'+taburl.split('#')[1]+']').tab('show');
  7. }
  8.  
  9. // Allow internal links to activate a tab.
  10. $('a[data-toggle="tab"]').click(function (e) {
  11. e.preventDefault();
  12. $('a[href="' + $(this).attr('href') + '"]').tab('show');
  13. })
  14.  
  15. }); // End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement