/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$('input#agreement').change(function(){ if($(this).is(':checked')){ $(".ad-form").slideDown("slow"); }else{ $(".ad-form").slideUp("slow"); } });