Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Krasnov8953/184662ac1278c7971986c02c95f4bfff to your computer and use it in GitHub Desktop.
Save Krasnov8953/184662ac1278c7971986c02c95f4bfff to your computer and use it in GitHub Desktop.
input type file appned filename to custom div
$('input[type="file"]').on('change', function (event, files, label) {
var file_name = this.value.replace(/\\/g, '/').replace(/.*\//, '')
$('.filename').text(file_name);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment