Path : /srv/www/vhosts/laboserv/wp-content/themes/laboserv/js/ |
Current File : //srv/www/vhosts/laboserv/wp-content/themes/laboserv/js/show-hide-form.js |
$( document ).ready(function() { // Handler for .ready() called. var clicked = false; $( "#fm-form-3" ).hide(); $( "#showformbutton" ).click(function() { if (clicked) { clicked = false; $( "#fm-form-3" ).hide(); } else { clicked = true; $( "#fm-form-3" ).show(); } }); }); //$("#show-form-button").click(function() { // $( "#fm-form-3" ).show(); //});