Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
$("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..

share|improve this question
yeah, many input type text and textarea, that as these weren't coded via html I'd rather use jquery instead – Pablo Colla Sep 14 '12 at 21:25

closed as not a real question by zzzzBov, scrappedcola, user97693321, martin clayton, PaulG Sep 15 '12 at 8:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

I think the problem here is that the autocomplete is not a valid attribute for the input field.. It is added by the jQuery plugins .

You need to set the autocomplete to on and off using the plugin syntax for the jquery UI

share|improve this answer
great, how would this be done, all I get to code is: $("input:text,textarea").attr("autocomplete","off"); What's the necessary wrapper for it to be activated for new elements as well – Pablo Colla Sep 14 '12 at 21:23
1  
As soon as the element is added to the DOM.. Assign the autocomplete to it $('#newelementID').autocomplete() – Sushanth -- Sep 14 '12 at 21:39
yeah, just thought there might be a more dynamic way as there are plenty of input type text and textarea that load via different functions – Pablo Colla Sep 14 '12 at 21:41
Because lets say you have assigned an autocomplete to a textbox. Next on button click you add one more textbox.. Now if you do this $('input:text').autocomplete() . It will add the autocomplete to the already existing element too.. To avoid that you add this to only the newly added element or destroy the autocomplete to all the prviously added elements and and them all again by using $('input:text').autocomplete(); – Sushanth -- Sep 14 '12 at 21:54

Not the answer you're looking for? Browse other questions tagged or ask your own question.