Answers for "stop browser giving form suggestions html"

2

input without autocomplete

<input type="text" name="foo" autocomplete="off" />
Posted by: Guest on July-20-2020
6

disable autocomplete javascript

someForm.setAttribute( "autocomplete", "off" ); 
someFormElm.setAttribute( "autocomplete", "off" );
Posted by: Guest on March-12-2020

Code answers related to "stop browser giving form suggestions html"

Browse Popular Code Answers by Language