Skip to content

Instantly share code, notes, and snippets.

@logeshpaul
Created March 30, 2012 10:03
Show Gist options
  • Save logeshpaul/2250541 to your computer and use it in GitHub Desktop.
Save logeshpaul/2250541 to your computer and use it in GitHub Desktop.
Js: Custom input file - Get filename
$(".browse-container-inner .default-browse-button").live("change", function() {
var a = $(this).val().split("\\").pop();
return $(this).parent().siblings(".browse-text").val(a);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment