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?
source
share