In Chrome, when selectbox is selected, the jquery event does not fire

$("#form_field_field_type").live("click", function() {
    console.log("I reach over here");
});
+3
source share
2 answers

I had an idea ... You can fire the change event instead of the click event, so use the following code:

$("#form_field_field_type").live("change", function() { console.log("I reach over here"); });

I hope this works!

0
source

All Articles