Skip to content

Instantly share code, notes, and snippets.

@otnansirk
Created October 19, 2017 05:49
Show Gist options
  • Save otnansirk/ce86ea4fa2fed069eba7015bc8373915 to your computer and use it in GitHub Desktop.
Save otnansirk/ce86ea4fa2fed069eba7015bc8373915 to your computer and use it in GitHub Desktop.
<input id="file" type="file">
<script>
document.getElementById("file").onchange = function() {
alert(document.getElementById("file").files[0]);
}
</script>
<!-- onchange ; mening when where is a change -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment