Hi, I m having a problem in chrome with the following:
var items = $("option", obj);  
   items.each(function(){
    $(this).click(function(e){
                                        //alert("test");
     process($(this).html());
     return false;
    });
   });
The click event doesnt seem to fire in chrome! In firefox it works!I wanna be able to click on a option element from a combo, if I do instead another kind of element, lets say <li> it works fine. Any idea? Thanks