Steve
0
Q:

jquery toggle show hide

$( "#clickme" ).click(function() {
  $( "#book" ).toggle( "slow", function() {
    // Animation complete.
  });
});
4
//Display or hide the matched elements.
$('.myElement').toggle();

// Display the matched element.
$('.myElement').show();

// Hides the matched element.
$('.myElement').hide();
-1

New to Communities?

Join the community