-1

Browsers usually keep track of texts entered in html input fields. Is there any way to disable popup preview on texts fields via javascript or jquery?

enter image description here

hamed
  • 7,361
  • 12
  • 44
  • 95

2 Answers2

5

Try this one:

 <input type="textbox" autocomplete="off" />

Happy coding :)

Bhavin
  • 687
  • 4
  • 14
0

using javascript :

yourInput.setAttribute( "autocomplete", "off" ); 

jQuery

$("input").attr("autocomplete", "off");
Enjoyted
  • 1,096
  • 5
  • 15