I\'m having a problem in Chrome
with the following:
var items = $(\"option\", obj);
items.each(function(){
$(this).click(function(){
I use a two part solution
HTML
JS
$("#select-item-1").click(function () { alert('hello') });
$("#select-item-2").click(function () { alert('world') });
$("#sneaky-select").change(function ()
{
$("#sneaky-select option:selected").click();
});