Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <code>$(document).ready(function(){
  2. $('#homebox_tabs div').hide();
  3. $('#homebox_tabs div:first').show();
  4. $('#homebox_tabs ul li:first').addClass('active');
  5. $('#homebox_tabs ul li a').click(function(){
  6. $('#homebox_tabs ul li').removeClass('active');
  7. $(this).parent().addClass('active');
  8. var currentTab = $(this).attr('href');
  9. $('#homebox_tabs div').hide();
  10. $(currentTab).show();
  11. return false;
  12. });
  13. });</code>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement