I\'ve got a page with a variable number of elements (which explains why I\'m using event delegation here). When the user changes the selected opt
If I recall correctly you will need to call blur() to have jQuery invoke change() on IE machines. Try something like:
$("select[name=mySelectName]").click(function() { $(this).blur(); });