Skip to content Skip to sidebar Skip to footer

Jquery Append Elements Not Working With Autocomplete

jQuery newbie here, I have a table with 2 rows in, the input elements in these rows are set to autocomplete, this works perfectly. I have an 'add line' button that when clicked, jQ

Solution 1:

After you add the new input fields, you need to run your autocomplete() function again, since it has only been run on the old input elements (when the page loaded) and has not run on the new input elements.


Post a Comment for "Jquery Append Elements Not Working With Autocomplete"