EduardET

hide show section

Nov 15th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ( function( $ ) {
  2.     $( document ).ready( function() {
  3.         var button = $( ".show-more-content" );
  4.         button.click( function( e ) {
  5.             e.preventDefault();
  6.             var section = $( this ).data( "section" );
  7.             $( "." + section ).slideDown().addClass( "wpc-visible" );
  8.         } )
  9.     } );
  10. } )( jQuery
Advertisement
Add Comment
Please, Sign In to add comment