Selected - binding to change the event after selection. Selection is used to select.

I am currently using the jQuery Chosen plugin and it works well. Currently, I can bind to the Chosen change event as follows:

$('#the_selector').chosen().change( ... );

And it works great. However, I came across a situation where I need to bind a change event after Chosen is already applied to the selection. Is there any way to do this?

+5
source share
1 answer

I managed to bind an event using:

$('#the_selector').on('change', function(){
    Do stuff
});
+6
source

All Articles