[jQuery] select <option> not catching mousedown event in IE and Chrome
This is the code I am using to test this. In FF and Op. When I click
on an option in the select box, the alert pops up. In IE and Chrome,
it doesn't seem to catch it at all.
$('.clickopt').mousedown(function(){
alert("test");
});