I am using an input
element with type="file"
and I want to cancel selection of something I choose.
I tried using
document.getElementById("pic1").value="";
document.getElementById("pic1").src="";
But it works only on Firefox.
Does anyone has a solution that works in IE and Chrome? Please no JQuery.