Last active
December 27, 2015 05:19
-
-
Save jonaphin/7273147 to your computer and use it in GitHub Desktop.
IE 10 - Fix Double-Click Issue on File Upload Buttons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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