Return to Snippet

Revision: 71054
at December 16, 2016 11:37 by kasparkus


Initial Code
$(".clickMore").click(function(e) {
    e.preventDefault();
    $(".additionalInformation").toggle();
});

Initial URL


Initial Description
clickMore is the button, .additionalInformation was the block of code that I was showing/hiding with the click

Initial Title
Jquery show/hide

Initial Tags


Initial Language
jQuery