I am using Jörn Zaefferer\'s jquery autocomplete plugin, and I can\'t seem to figure out how to make it work when I clone an autocomplete field. It almost works, in that the clo
Make
$newParticipant = $("#template").clone(true);
like so
$newParticipant = $("#template").clone();
Your example works for me in FF when you don't clone events on #template.