Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to clear the file input in my form.

I know about setting the sources to the same method... But that method wont erase the selected file path.

Is there a way to clear the path inside the file input?

NOTE: I dont want to reload the page, or reset the form...

NO AJAX...

So, impossible?

Thanks

share|improve this question

5 Answers

up vote 11 down vote accepted

How about removing that node, creating a new one with the same name?

share|improve this answer
1  
how do you mean, give me an example please. – Anonymous12345 Nov 9 '09 at 19:48

U need replace it with new file input. Here is how it can be done with jQuery:

var inputFile = $('input[type=field]');
inputFile.wrap('<div />');

and use this line when you need to clear input field (on some event for example):

inputFile.parent().html( inputFile.parent().html() );
share|improve this answer
Works just fine! – Igor Turman Aug 17 '11 at 16:44
For replace the original element, this looks better: stackoverflow.com/questions/1043957/… – M. Gao Jan 6 at 5:47
document.getElementById('your_input_id').value=''

Edit:
This one doesn't work in IE and opera, but seems to work for firefox, safari and chrome.

share|improve this answer
1  
This works for me, although I always ask myself for how long. – Pekka 웃 Nov 9 '09 at 19:39
this wont work, just in some browsers, and also setting the value of a file input is a security breach... not good choice. – Anonymous12345 Nov 9 '09 at 19:52
This doesn't work in IE (I don't think Opera either). – Roatin Marth Nov 9 '09 at 19:54
Thanks, I'll edit the answer. – Soufiane Hassou Nov 9 '09 at 20:24

JavaScript is not allowed to affect the contents of a file input field for security reasons. When it comes to files, if you need anything more robust than the most basic functionality the browser provides, you need to look at something like Flash or Silverlight.

share|improve this answer
2  
To call this a "security breach" across the board is pretty silly. It seems like it would be trivial for a browser like IE to allow you to set the value property only to the empty string, in order to clear it. – matt b May 2 '11 at 19:58

How about:

input.type = "text";
input.type = "file";

I still have to understand why this does not work with webkit.

Anyway, this works with IE9>, Firefox and Opera.
The situation with webkit is that I seem to be unable to change it back to file.
With IE8, the situation is that it throws a security exception.

Edit: For webkit, Opera and firefox this works, though:

input.value = '';

(check the above answer with this proposal)

I'll see if I can find a nice cleaner way of doing this cross-browser without the need of the GC.

Edit2:

try{
    inputs[i].value = '';
    if(inputs[i].value){
        inputs[i].type = "text";
        inputs[i].type = "file";
    }
}catch(e){}

Works with most browsers. Does not work with IE < 9, that's all.
Tested on firefox 20, chrome 24, opera 12, IE7, IE8, IE9, and IE10.

share|improve this answer

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.