I have posted a question about automatically dropping the next dropdown after selecting from previous dropdown, but now I'm trying to work it out with chosen jquery plugin.
The solution there is not working if Chosen is plugged in.
I tried fiddling something like this:
$("select").chosen().each(function () {
$("#select1").on("chosen:hiding_dropdown", function () {
var $chzn = $('#select2').next()
$chzn.find(".chosen-drop").show();
});
});
But it's not working.. even with slidedown. JSFiddle