Loving SELECT2. However, I have an issue: Even though I have it working on a few pages, there is one page where I am running into problems:
I have several drop downs that I'm loading with AJAX. Here is the code:
var brandid = $("#vehicleBrand").val();
$.get("ajax/vehicle/vehicle_getmodels.aspx?bid=" + brandid, function (data) {
$("#divVehicleModel").html(data);
$("#vehicleModel").select2();
});
Now, the select is rendered properly, I does get the Select2 skinning, but the filter input box is not working? I cant even click it? So basically, the looks is there but not the functionality?
Anyone?
Regards,
Bob