I am trying to bind a simple click event to an the selected option of a pulldown.
$('select#myselect').delegate(':selected', 'click', function()
{
alert('selected');
});
This code works in Firefox, but not Chrome/Safari. Can I use the .delegate() to bind an option for a pulldown menu like this? If so, how? If not, what is the best alternate solution?
btw, jQuery Click on Event.. gives a potential solution using .change(), but I would like to manage all bindings with .delegate() if possible.