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

I am working on file uploading. So when I click cross button how can I remove exited file using php without page reload?

enter image description here

share|improve this question

3 Answers

up vote 6 down vote accepted

You can, with javascript

document.getElementById("fileInput").value = "";

How can I remove exited file using php without page reload?

You can't, PHP is server side language

share|improve this answer
"how can I remove [...] file using php" – Linus Kleen Feb 28 '12 at 13:29
@LinusKleen: Added an answer to this piece of question ;) – Martin. Feb 28 '12 at 13:30

jQuery version

$("#id").attr('value', ''); or $("#id").val('');

Also check out this article: http://www.learningjquery.com/2007/08/clearing-form-data

share|improve this answer
Really? jQuery for such a task? – Martin. Feb 28 '12 at 16:19
And why is is so wrong if he already has jquery loaded? – w0rldart Feb 28 '12 at 16:36

if you're using jQuery:

$("#remove").click(function(){
   $("#fileInput").val("");
   return false;
})
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.