Yes, I know it doesn't work in IE and using 'click' works. But here is my problem.
I have two select boxes - Country and City. Selecting a country populates the city select box (and updates a google map).
The following code works like a charm in IE and Opera:
if (jQuery('#city').length > 0) {
jQuery('#city').change(function(){ populateCityListBox(); });
}
If I use 'click' instead of 'change', then the populateCityListBox() is triggered once when I click the select box arrow, and one more time when I click the list box element.
How can I avoid this double triggering?