I\'m having a problem in Chrome with the following:
Chrome
var items = $(\"option\", obj); items.each(function(){ $(this).click(function(){
I found that the following worked for me - instead on using on click, use on change e.g.:
jQuery('#element select').on('change', (function() { //your code here }));