/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/*Use a jQuery selector to add a new attribute to input fields that you dont want to have auto-fill*/ $('input[type="password"]').attr({autocomplete:"off"});