Advertisement
Guest User

Untitled

a guest
May 31st, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $(document).ready(function(e) {
  2. $('.tabs a').click(function(){
  3. $('.tabs a').removeClass('active');
  4. $(this).addClass('active');
  5. $('.tab').removeClass('active');
  6. $('.tab_box .tab').hide();
  7. $(".tab:eq("+$(this).index()+")").addClass("active").show();
  8. });
  9. $('.tab_box .tab').hide();
  10. $('.tab_box .tab.active').show();
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement