Nizam
Nizam

Reputation: 551

Autocomplete on dynamic textbox using jquery+autocomplete plugin

I am using a form which has dynamic textboxes I want autocomplete functionality to be implemented on them and I am using Autocomplete Plugin and I want to bind them using live().

Can anyone help me out on how to implement it.

Thanks in advance.

Upvotes: 0

Views: 1104

Answers (1)

Pointy
Pointy

Reputation: 413737

The "live()" facility is for event handling, not for initializing plugins. When you add your text inputs, you'll have to also call the autocomplete initialization at that time.

Upvotes: 1

Related Questions