Skip to content

Instantly share code, notes, and snippets.

@jartes
Created March 10, 2014 16:03
Show Gist options
  • Save jartes/9467897 to your computer and use it in GitHub Desktop.
Save jartes/9467897 to your computer and use it in GitHub Desktop.
Control WPCF7 Acceptance
jQuery('#check-term').bind('change', function() {
if(jQuery(this).is(':checked')){
jQuery("#acepta-condiciones").hide();
}
else {
jQuery("#acepta-condiciones").show();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment