IE requires double click with custom button
I have a script that is dived as: HTML: <div id="wrapper"> <div id="container"> <div id="button">Click me!</div> <form> <input type="file" /> </form> </div> <div id="notice">File is uploaded!</div> </div> JavaScript(JQuery 2): $(document).ready(function () { $("input").on("change", function () { $("div#notice").fadeIn(); //$("form").submit(); //If you want it to submit on your site uncomment this }); }); CSS: div#wrapper { background-color: #ccc; position: absolute; width: 300px; height: 200px; } div#wrapper > form > input { color: rgba(0, 0, 0, 0); zoom: 1; filter: alpha(opacity=0); opacity: