This is my code:
html:
<form>
<input id = "file" type="file" />
<div id="custom_button">custom button</div>
</form>
Jquery:
$("#custom_button").on("click", function () {
$("#file").click();
});
css:
#file {
display: none;
}
But this works only in firefox and chrome, in safari and opera, at click on custom button
, window for file choosing is not calling
DEMO: http://jsfiddle.net/J4GdN/
Qusetion: why this not works in safari and opera? what is alternative, for making this in these browsers?