I\'m having a problem in Chrome with the following:
Chrome
var items = $(\"option\", obj); items.each(function(){ $(this).click(function(){
The easy way to change the select, and update it is this.
// BY id $('#select_element_selector').val('value').change();
another example:
//By tag $('[name=selectxD]').val('value').change();
$("#select_element_selector").val('value').trigger('chosen:updated');