Related questions
jquery form plugin, no error handling
It seems that there are no error handling facility in the Jquery.Form plugin, which is very frustrating. Even though the documentation says we can use the $.ajax options, I still cannot make use of the 'error' option when the …
qq.FileUploader: Cancel submit
I'm using the plugin qq.FileUploader.
Before submitting file, I want to know if a file with the same name has already been upload.
I'm using this code:
var uploader = new qq.FileUploader({
element: document.getElementById('file-uploader-requestDocuments'),
action: '<%: …
jQuery Ajax File Upload
Can I use the following jQuery code to perform file upload using POST method of an ajax request ?
$.ajax({
type: "POST",
timeout: 50000,
url: url,
data: dataString,
success: function (data) {
alert('success');
return false;
}
});
If it is possible, do I need …