Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save benvds/174908 to your computer and use it in GitHub Desktop.
Save benvds/174908 to your computer and use it in GitHub Desktop.
disable autocomplete for textfields with class "autocomplete-off" using jQuery
//
// <input type="text" class="autocomplete-off" />
//
$(function(){
$('.autocomplete-off').attr('autocomplete', 'off');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment