Last active
September 25, 2023 02:47
-
-
Save dantetesta/d384b6c358d3b44027616c2f4c4b9cc4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*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