Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ( function( $ ) {
- $( document ).ready( function() {
- var button = $( ".show-more-content" );
- button.click( function( e ) {
- e.preventDefault();
- var section = $( this ).data( "section" );
- if ( $( "." + section ).hasClass( "wpc-visible" ) ) {
- $( "." + section ).removeClass( "wpc-visible" ).slideUp();
- $( this ).text( "Show more content" );
- } else {
- $( "." + section ).slideDown().addClass( "wpc-visible" );
- $( this ).text( "Hide content" );
- }
- } )
- } );
- } )( jQuery );
Advertisement
Add Comment
Please, Sign In to add comment