//Use this for IE
autocomplete="off"
//Use this for Chrome
autocomplete="false"
//Form Example
// You can also add it to the form so you won't need to add it individually.
<form id="form1"> <input id="txtName" type="text" autocomplete="false" /> <input id="txtEmail" type="text" autocomplete="false" /> <input id="btnSubmit" type="button" value="Submit" /> </form>