Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
How to find out the filename of the file uploaded?
Old 06-28-2007, 05:00 AM How to find out the filename of the file uploaded?
amox's Avatar
Novice Talker

Posts: 10
Name: Nash Field
Trades: 0
Hi all,
This piece of code retrieves the full path of where the file is located. How can I make it retrieve the filename and not the full path?

Code:
<form method="post" enctype="multipart/form-data" name="ddd">
file: <input type="file" name="filename" id="filename" />
<p>find out value of file. click --> <input type="submit" name="submit" value="find out" onclick="alert(document.getElementById('filename').value);return false;" /></p> 
</form>
The value returned will be something like C:/My Documents/New Folder/image.jpg.

I want to get the "image.jpg" only.
amox is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 06-29-2007, 07:49 PM Re: How to find out the filename of the file uploaded?
Extreme Talker

Posts: 149
Trades: 0
Add this code

Quote:
<script type="text/javascript">
function getFileName(fileName)
{
var ar = fileName.split("/");
return ar[ar.length-1];
}
</script>
before that form

In your case instead of

Quote:
alert(document.getElementById('filename').value);r eturn false;
add

Quote:
alert(getFileName(document.getElementById('filenam e').value));return false;
__________________
Free
Please login or register to view this content. Registration is FREE

Visit our
Please login or register to view this content. Registration is FREE
and
Please login or register to view this content. Registration is FREE
mimamo is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to How to find out the filename of the file uploaded?
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.41706 seconds with 12 queries