jQuery Searchable dropdown on cloned select

I’m trying to use jQuery’s Searchable Dropdown Plugin for a select and
I’m having trouble getting this to work on cloned elements in my scripts.
This works fine on the first select, but not on the next cloned line.
I apply the searchable functionality to the new select after it has been generated,

end().find("select[id^='Produkt_']").searchable().

but this did not help.

Do you have any tips for how to get this to work ?

Here is the link to jsfiddle
And here is the link to the jQuery Searchable DropDown Plugin

Identifiers are unique by definition, so only one will ever be found.

Use class names instead if you have multiple items to find.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.