I need help with my code:
I am dynamically adding elements, creating new elements need these functions have a plugin called CHOSEN but to create them after creation does not work I tried to rerun the function to add the properties of Chosen to new elements.
ajaxchosen = function () {
$("select").each(function(index, element){
$(element).ajaxChosen(
{ method: "GET",
url: $(element).attr("source"),
dataType: "json"
}, function(data){
var terms;
terms = {};
$.each(data, function (i, val) {
return terms [i] = val;
});
return terms;
});
});
};
$ (element).closest("form").find(".nested-field:visible:last").append(template.replace(regexp, new_id));
ajaxchosen();
