I would like to load dynamically (using a velocity object) a select drop down list, and then associate the change event with it; to do it I wrote so:
$(function() {
var tableList = $("#tableList");
#foreach( $i in $it.getTableNames() )
tableList.append($("<option></option>")
.text("$!esc.html($i)"));
#end
tableList.change(function(){
jQuery.ajax({
type: "GET",
url: "$it.uri" + "/tablesColumnNames",
dataType: "json",
success: loadTableResponse
});
});
}
But despite the option list is correctly loaded the change event can never be trigged. What is wrong with this? Thank you for your answers.

});instead of}– Jimbo Feb 1 at 15:07