I'm using an image (and input "file"-->hidden) when user clicks the image it's execute the following code:
$('#edtFile1').click(); //edtFile1 is the input for file choose...
It's working in FF, chrome and IE>8, in IE8 it's not working, I bind the click to image using jQuery 1.9 with this code:
//bind click on image-->file browse
$("#btnimg1").click(function(event) {
$('#edtFile1').click();
});