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

i've looked all over stackoverflow and the general internet and i can't find a simple AJAX file uploader (Just form submission). The ones i have found aren't flexible enough and don't fit my purpose. If i could ajust this script to file uploads, that would be great:

<script type="text/javascript">
 function upload(str)
 {
 if (str.length==0)
 { 
document.getElementById("txtHint").innerHTML="";
 return;
  }
 if (window.XMLHttpRequest)
    {// code for IE7+, Firefox, Chrome, Opera, Safari
   xmlhttp=new XMLHttpRequest();
   }
 else
   {// code for IE6, IE5
   xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
   }
 xmlhttp.onreadystatechange=function()
   {
   if (xmlhttp.readyState==4 && xmlhttp.status==200)
     {
     document.getElementById("hint").innerHTML=xmlhttp.responseText;
     }
   }
 xmlhttp.open("GET","ajax/link.php?q="+str,true);
 xmlhttp.send();
 }

In the HTML i would have

<input type='file' onblur='upload(this.value)'>

Thanks

share|improve this question

3 Answers

up vote 6 down vote accepted

Here is a simple ajax file uploader

Uploadify

And if you don't want flash, you may use this one;

AxUploader

share|improve this answer
Thanks, I just used AxUploader. Thats exactly what i was looking for – user1310420 Apr 11 '12 at 6:54

Here is another one:

https://github.com/blueimp/jQuery-File-Upload/wiki

And, if you find a little more on Stackoverflow:

How can I upload files asynchronously with jQuery?

share|improve this answer

It's not that easy. You can't use ajax directly to upload files. Think about the security issues that would cause? What if I put "/%USER%/Desktop/CreditCardsAndPasswords.txt" in your str field? In short, you need to find and use those 'non flexible' uploaders you were talking about and will have to edit them to your needs. Either that, or write one yourself to fit your purpose.

The way most 'ajax' uploaders work is they dynamically create Html input file elements, and submit a subset of your form (just the file element) to a php script on your website, which then saves the file to whatever temp directory. Then when you submit the rest of the form, you can 'catch up' with the rest of the script and handle whatever processing is necessary with the uploaded files.

There are many Many ajax 'uploaders' out there. Just do a search and find one, I can't believe all of the ones out there aren't good enough.

share|improve this answer
Hi, the problem with that is that i need to have single upload button, and once someone has clicked uploaded the file it automattically uploads. Only one file will be uploaded at a time. – user1310420 Apr 11 '12 at 6:37

Your Answer

 
discard

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