Possible Duplicate:
JQuery .submit() Fails in IE9
This piece of Jquery doesn't work in IE:
$('div#photoCropContainer').click(function() {
$('input#file').trigger('click');
});
In the JSFiddle on IE9 - if you click browse button, then submit fires automatically.
If however you click 'click me!' and choose a file the submit doesn't fire.
It appears the issue is with the .trigger() on IE9 - anyone have any ideas or advice?
thx