HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ns3133907 6.8.0-86-generic #87-Ubuntu SMP PREEMPT_DYNAMIC Mon Sep 22 18:03:36 UTC 2025 x86_64
User: cssnetorguk (1024)
PHP: 8.2.28
Disabled: NONE
Upload Files
File: /home/quick.org.uk/public_html/wp-content/themes/busybee/functions/js/shortcodes.js
/*-----------------------------------------------------------------------------------

FILE INFORMATION

Description: JavaScript used on WooFramework shortcodes.
Date Created: 2011-01-24.
Author: Matty.
Since: 3.5.0


TABLE OF CONTENTS

- Tabs shortcode
- Toggle shortcode

-----------------------------------------------------------------------------------*/

jQuery(function($) {
	
/*-----------------------------------------------------------------------------------
  Tabs shortcode
-----------------------------------------------------------------------------------*/
	
	if ( jQuery( '.shortcode-tabs').length ) {	
		
		jQuery( '.shortcode-tabs').each( function () {
		
			var tabCount = 1;
		
			jQuery(this).children( '.tab').each( function ( index, element ) {
			
				var idValue = jQuery(this).parents( '.shortcode-tabs').attr( 'id' );
			
				var newId = idValue + '-tab-' + tabCount;
			
				jQuery(this).attr( 'id', newId );
				
				jQuery(this).parents( '.shortcode-tabs').find( 'ul.tab_titles').children( 'li').eq(index).find( 'a').attr( 'href', '#' + newId );
				
				tabCount++;
			
			});
		
			var thisID = jQuery(this).attr( 'id' );
		
			jQuery(this).tabs( { fx: { opacity: 'toggle', duration: 200 } } );
		
		});


	} // End IF Statement
	
/*-----------------------------------------------------------------------------------
  Toggle shortcode
-----------------------------------------------------------------------------------*/
	
	if ( jQuery( '.shortcode-toggle').length ) {	
		
		jQuery( '.shortcode-toggle').each( function () {
			
			var toggleObj = jQuery(this);
			
			toggleObj.closedText = toggleObj.find( 'input[name="title_closed"]').attr( 'value' );
			toggleObj.openText = toggleObj.find( 'input[name="title_open"]').attr( 'value' );
			
			// Add logic for the optional excerpt text.
			if ( toggleObj.find( 'a.more-link.read-more' ).length ) {
				toggleObj.readMoreText = toggleObj.find( 'a.more-link.read-more' ).text();
				toggleObj.readLessText = toggleObj.find( 'a.more-link.read-more' ).attr('readless');
				toggleObj.find( 'a.more-link.read-more' ).removeAttr('readless');
				
				toggleObj.find( 'a.more-link' ).click( function () {
					
					var moreTextObj = jQuery( this ).next( '.more-text' );
					
					moreTextObj.animate({ opacity: 'toggle', height: 'toggle' }, 300).css( 'display', 'block' );
					moreTextObj.toggleClass( 'open' ).toggleClass( 'closed' );
					
					if ( moreTextObj.hasClass( 'open') ) {
					
						jQuery(this).text(toggleObj.readLessText);
					
					} // End IF Statement
					
					if ( moreTextObj.hasClass( 'closed') ) {
					
						jQuery(this).text(toggleObj.readMoreText);
					
					} // End IF Statement
					
					return false;
				});
			}
			
			toggleObj.find( 'input[name="title_closed"]').remove();
			toggleObj.find( 'input[name="title_open"]').remove();
			
			toggleObj.find( 'h4.toggle-trigger a').click( function () {
			
				toggleObj.find( '.toggle-content').animate({ opacity: 'toggle', height: 'toggle' }, 300);
				toggleObj.toggleClass( 'open' ).toggleClass( 'closed' );
				
				if ( toggleObj.hasClass( 'open') ) {
				
					jQuery(this).text(toggleObj.openText);
				
				} // End IF Statement
				
				if ( toggleObj.hasClass( 'closed') ) {
				
					jQuery(this).text(toggleObj.closedText);
				
				} // End IF Statement
				
				return false;
			
			});
					
		});


	} // End IF Statement
	
}); // jQuery()