Is there a way to submit “multipart/form-data” forms with CakePHP + Ajax + jQuery ?
When I submit the form using Ajax in my CakePHP application, I get all data from the form but not the file that I choose to upload using file control.
This is my code:
function save_option(id)
{
$.ajax({
type : "post",
url : site_url + "lists/save_option/",
data : $("#option_form_"+id).serialize(),
success : function(response) {
//on success
},
error : function (XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus);
}
});
}
Please help me out.
Thanks