hola tengo una problema con la siguiente librería https://github.com/harvesthq/chosen
lo que intento hacer es agregar elementos dinámicamente pero al agregar un elemento nuevo la librería no me funciona.he intentado agregar una función que llama a la librería pero nada
como podría hacer para agregar un nuevo elemento y que la librería funcionase
$("a.add-nested-field" ). each(function(index, element) {
return $(element).on( "click", function() {
var association, new_id, regexp, template;
association = $(element).attr( "data-association" );
template = $( "#" + association + "_fields_template" ).html();
regexp = new RegExp( "new_" + association, "g" );
new_id = new Date().getTime();
$(element).closest( " form" ).find( ".nested-field:visible:last" ).after(template.replace(regexp, new_id));
return false;
});
});