$("input:text,textarea").attr("autocomplete","off");
What's the twist to have it work when new elements get added to the dom. Affect input:text and textarea to apply this rule to newly added elements after the rule was executed on $(document).ready
this is the answer, although not that perfect.
$(function() {
$("body").on("focus", "input:text,textarea", function(){
if($(this).attr("autocomplete")!="off"){
$(this).attr("autocomplete","off");
}
});
});
thanks for all the downvotes..