Can I use this following jQuery code to perform file upload using post method of 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 to fill "data" part? Is it the correct way? I only post the file to the server side.
I have been Googling around, but what I found was plugin while in my plan I do not want to use it. At least for the moment.
Thanks in advance