jQuery(function() { /* Accordion */ jQuery('.ig-shortcode-toggle-active').each(function() { jQuery(this).find('.ig-shortcode-toggle-content').show(); }); jQuery('.ig-shortcode-toggle .ig-shortcode-toggle-heading').click(function() { var toggle = jQuery(this).parent('.ig-shortcode-toggle'); if(jQuery(this).parent('.ig-shortcode-toggle').parent('div').hasClass('ig-shortcode-accordion')) { toggle.parent('div').find('.ig-shortcode-toggle').find('.ig-shortcode-toggle-content:visible').slideUp(); toggle.parent('div').find('.ig-shortcode-toggle-active').removeClass('ig-shortcode-toggle-active'); toggle.toggleClass('ig-shortcode-toggle-active'); toggle.find('.ig-shortcode-toggle-content').slideToggle(400); } else { toggle.toggleClass('ig-shortcode-toggle-active'); toggle.find('.ig-shortcode-toggle-content').slideToggle(400); } }); /* Tabs */ jQuery('.ig-shortcode-tabs').each(function() { jQuery(this).prepend('
'); jQuery(this).find('.ig-shortcode-tabpane').each(function() { jQuery(this).parent('.ig-shortcode-tabs').find('.ig-shortcode-tab-buttons').append(''+jQuery(this).find('.ig-shortcode-tab-label').text()+''); jQuery(this).find('.ig-shortcode-tab-label').remove(); }); jQuery(this).find('.ig-shortcode-tab-buttons').find('a:first').addClass('active'); jQuery(this).find('.ig-shortcode-tabpane').hide(); jQuery(this).find('.ig-shortcode-tabpane:first').show(); }); var tab_to_show = 0; jQuery('.ig-shortcode-tab-buttons a').live("click", function() { tab_to_show = jQuery(this).parent('.ig-shortcode-tab-buttons').find('a').index(jQuery(this)); jQuery(this).parent('.ig-shortcode-tab-buttons').parent('.ig-shortcode-tabs').find('.ig-shortcode-tabpane').hide(); jQuery(this).parent('.ig-shortcode-tab-buttons').parent('.ig-shortcode-tabs').find('.ig-shortcode-tabpane').eq(tab_to_show).show(); jQuery(this).parent('.ig-shortcode-tab-buttons').find('a').removeClass('active'); jQuery(this).parent('.ig-shortcode-tab-buttons').find('a').eq(tab_to_show).addClass('active'); return false; }); });