Created
March 16, 2018 09:50
-
-
Save ozknozsrt/3e0e651e6948fe8fff6885e5a89013e1 to your computer and use it in GitHub Desktop.
File Input Named
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
<input type="file" id="fileUpload"> | |
$('input[type=file]').change(function () { | |
console.dir(this.files[0].name) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment