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" );
- $( "." + section ).slideDown().addClass( "wpc-visible" );
- } )
- } );
- } )( jQuery
Advertisement
Add Comment
Please, Sign In to add comment