I\'m having a problem in Chrome with the following:
Chrome
var items = $(\"option\", obj); items.each(function(){ $(this).click(function(){
I don't believe the click event is valid on options. It is valid, however, on select elements. Give this a try:
$("select#yourSelect").change(function(){ process($(this).children(":selected").html()); });