Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to pass the filename of a file-input to a parent page... is this even possible?

The input type ="file" has a value, but can I use it like this?

I have used the value of the file-input to check the extension of the file, and it works! So I guess there is a value, but can this be done and is it reliable?

If not, how would you have done it?

Thanks

share|improve this question
what do you mean by "parent page" ? – mkoryak Nov 12 '09 at 20:43

1 Answer

up vote 3 down vote accepted

You can only access the file name (without the full path) with javascript in all the browsers except IE.

var filename = document.forms.myForm.elements.myFileInput.value;

will give "file.gif" if the file c:\docs\bah\file.gif was selected

share|improve this answer
Perfect answer, thanks man!!! – Anonymous12345 Nov 12 '09 at 20:46
1  
Indeed just the usual way. I would only add: You can access it, but not edit it. Keep it in mind. – BalusC Nov 12 '09 at 20:46
By the way, what would I do in IE then? is there a way around it? – Anonymous12345 Nov 12 '09 at 20:55
In IE, you can access the full path ;) – Fabien Ménager Nov 12 '09 at 22:25
FYI You can get the full path in FF < v3. – Crescent Fresh Nov 13 '09 at 9:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.