Created
March 25, 2017 19:42
-
-
Save andreypelykh/f34898feb9cbc72343f2ef9d48c8d948 to your computer and use it in GitHub Desktop.
show name of selected file good variant
This file contains 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
$( '.fileContainer [type=file]' ).on( 'change', function updateFileName( event ){ | |
var $input = $( this ); | |
$input.parent().next('.fileName').text( $input.val().replace(/([^\\]*\\)*/,'') ) | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment