Advertisement
sayhicoelho

Untitled

May 25th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.36 KB | None | 0 0
  1. <html>
  2. ...
  3. <body>
  4. <input id="cpf"/>
  5. <button id="cadastrar">Cadastrar</button>
  6.  
  7. <script>
  8.     function is_cpf(c) {
  9.         ...
  10.     }
  11.  
  12.     function habilitarbtn(c) {
  13.         document.getElementById('cadastrar').disabled = !is_cpf(c);
  14.     }
  15.  
  16.     document.getElementById('cpf').addEventListener('input', function (e) {
  17.         habilitarbtn(e.target.value);
  18.     });
  19. </script>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement