I\'m having a problem in Chrome with the following:
Chrome
var items = $(\"option\", obj); items.each(function(){ $(this).click(function(){
Workaround:
$('#select_id').on('change', (function() { $(this).children(':selected').trigger('click'); }));