Created
March 25, 2017 19:28
-
-
Save andreypelykh/224eecf5b0fd4d33643e8a0c2eab06c1 to your computer and use it in GitHub Desktop.
Show name of selected file
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( 'click', function updateFileName( event ){ | |
var $input = $( this ); | |
setTimeout( function delayResolution(){ | |
$input.parent().text( $input.val().replace(/([^\\]*\\)*/,'') ) | |
}, 0 ) | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment