Guest User

Untitled

a guest
Apr 20th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. $("input[autocomplete='off']").each(function () {
  2.  
  3. var input = $(this);
  4. var id = $(this).attr("id");
  5. var name = $(this).attr("name");
  6.  
  7. input.removeAttr("name").removeAttr("id");
  8.  
  9. setTimeout(function () {
  10. input.attr("name", name).attr("id", id);
  11. }, 1);
  12.  
  13. });
  14.  
  15. $( document ).on( 'focus', ':input', function(){
  16. $( this ).attr( 'autocomplete', 'off' );
  17. });
  18.  
  19. <form action="/action_page.php" autocomplete="on"> <!-- este está habilitado -->
  20. First name:<input type="text" name="fname"><br>
  21. Last name: <input type="text" name="lname"><br>
  22. E-mail: <input type="email" name="email" autocomplete="off"><!-- Já este não --><br>
  23. <input type="submit">
  24. </form>
Add Comment
Please, Sign In to add comment