Hi Carols,

Adding * 'works' with few modification but FireFox will trigger the
'change' event twice. I've temporarily decided to use 'fix' below.

theForm.delegate('click', '#sel', function(e){
    $(this).unbind().change(function() {
        alert(this.value);
    });
});

Reply via email to