 |
 |
Clear value in INPUT TYPE=FILE
You can not use element.value="" for input type=file. If you want to clear all fields you can use type=reset. (RESET must work with FORM)
<form name=form1>
...
<input type="reset" value="Clear">
...
</form>
|
but if you want to clear only type=file this is a tricky:
<script type="text/javascript">
function clearMe() {
document.getElementById("fn").value='';
document.getElementById("test").innerHTML="<input type=\"file\" id=\"fn\">";
}
</script>
<form name=form1>
Name : <input type=text name=n size=32><br>
Picture : <span id="test"><input type="file" id="fn" ></span>
<input type="button" value="Clear" onClick="clearMe()">
</form>
|
Let's test by typing in Name and browse the file. See the difference between Clear and Reset
| Comment no. 1 |
Excellent fix ppl!!! Helped me..... thanks a lot!
From Ruchitha Date 09/05/50 Time 16.57 [63.172.27.2]
|
| Comment no. 2 |
thanks for posting this. it really helped in a tight situation
From MaiLee Date 10/05/50 Time 01.57 [70.237.233.129]
|
| Comment no. 3 |
Its working, nice tip.
From Waqas Ahmed Date 11/05/50 Time 14.14 [212.12.160.8:212.12.163.190:212.12.163.190]
|
| Comment no. 4 |
hello sir,
the rest will work fine but i don't what to add a rest button in my page i want to clear the file.values when any validation is done on that is that possible
From ravikiran Date 06/06/50 Time 17.49 [59.162.233.177]
|
| Comment no. 5 |
Very good!!!
Rare material in the web
From Felipe Date 30/07/50 Time 20.03 [200.225.90.10:unknown:unknown]
|
| Comment no. 6 |
1
From 163Öá³ÐÍø Date 15/09/50 Time 23.33 [60.190.240.76]
|
| Comment no. 7 |
nice
From Date 02/10/50 Time 12.20 [210.14.7.7:unknown:unknown]
|
| Comment no. 8 |
Awesome handy tip... tks alot
From egard Date 08/10/50 Time 09.46 [203.97.71.39]
|
| Comment no. 9 |
Excellent fix man .. it helped me a lot. Bunch of thanks:)
From priya Date 09/10/50 Time 14.12 [220.227.31.66]
|
| Comment no. 10 |
Its very useful code. Thanks
From palani Date 09/10/50 Time 18.09 [203.196.171.174]
|
| Comment no. 11 |
wo
From zzz Date 20/11/50 Time 22.41 [60.190.240.76]
|
| Comment no. 12 |
From Date 08/02/51 Time 15.33 [122.164.94.214]
|
| Comment no. 13 |
cant thank you enough. you saved me.
From aRi Date 29/02/51 Time 07.22 [192.146.1.14:10.45.52.81:10.45.52.81]
|
| Comment no. 14 |
just noticed. the date of the my previous comment posted shows 29/02/51. Kinda spooky.
Thanks again for this small yet elegant script
From aRi Date 29/02/51 Time 07.24 [192.146.1.14:10.45.52.81:10.45.52.81]
|
| Comment no. 15 |
Sorry, but what is mariburjeka?
Jane.
From sweet-je Date 25/03/51 Time 07.07 [222.135.124.88:206.51.237.114:206.51.237.114]
|
| Comment no. 16 |
fafafa
From afafa Date 03/04/51 Time 13.42 [203.99.208.2]
|
|
 |