I am currently using the jQuery Chosen plugin, and it is working well. Currently, I can bind to Chosen's change event like so:
$('#the_selector').chosen().change( ... );
And this works fine. I have encountered a case, however, where I need to bind to the change event after Chosen has already been applied to the select. Is there a way to do this?
I was able to bind to the event using:
$('#the_selector').on('change', function(){
Do stuff
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With