Skip to content

Instantly share code, notes, and snippets.

@jonaphin
Last active December 27, 2015 05:19
Show Gist options
  • Save jonaphin/7273147 to your computer and use it in GitHub Desktop.
Save jonaphin/7273147 to your computer and use it in GitHub Desktop.
IE 10 - Fix Double-Click Issue on File Upload Buttons
$(document).ready(function(){
if ($.browser.msie && parseInt($.browser.version) >= 10) {
$("body").on("mousedown", ".photo_uploader input[type='file']", function(){
$(this).click();
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment