Advertisement
Neolot

jQuery Tabs

Mar 16th, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.44 KB | None | 0 0
  1. /*
  2. See additional pasties: jQuery Tabs Markup and jQuery Tabs Styles
  3. */
  4. $('ul.tabs').each(function() {
  5.     $(this).find('li').each(function(i) {
  6.         $(this).click(function() {
  7.             $(this).addClass('current').siblings().removeClass('current');
  8.             var p = $(this).parents('div.tabs-wrapper');
  9.             p.find('div.box').hide();
  10.             p.find('div.box:eq(' + i + ')').fadeToggle('fast');
  11.         });
  12.     });
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement