the solution is to set the autocomplete in the input element to off.
with the following jQuery function, all the input element in the page will be set autocomplete to off.
$(document).ready(function(){
$("input").each(function () {
$(this).attr("autocomplete", "off");
})
})
Done!!
No comments:
Post a Comment