Possible Duplicate:
Click trigger on select box doesn't work in jQuery
I am trying to do the following to simulate a click on a select element:
setTimeout(function () {
$('#' + id).trigger('click');
}, 1000);
This works in Firefox but not IE. Is there some possible work around for IE?