Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreypelykh/f34898feb9cbc72343f2ef9d48c8d948 to your computer and use it in GitHub Desktop.
Save andreypelykh/f34898feb9cbc72343f2ef9d48c8d948 to your computer and use it in GitHub Desktop.
show name of selected file good variant
$( '.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