Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save dantetesta/d384b6c358d3b44027616c2f4c4b9cc4 to your computer and use it in GitHub Desktop.

Select an option

Save dantetesta/d384b6c358d3b44027616c2f4c4b9cc4 to your computer and use it in GitHub Desktop.
/*BY: ASK JARVIS + DANTE TESTA */
<script>
jQuery(document).ready(function(){
var btn = 'form[name=F1] button'; /*INFORME O SELETOR DO BOTÃO*/
var checkbox = '#form-field-aceite'; /*INFORME O NOME DO ID DO CHECKBOX*/
jQuery(btn).attr('disabled', 'disabled').css("opacity", "0.6");
jQuery(checkbox).click(function(){
if(jQuery(this).is(':checked')){
jQuery(btn).removeAttr('disabled').css("opacity", "1");
}else{
jQuery(btn).attr('disabled', 'disabled').css("opacity", "0.6");
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment