i have this jQuery-AJAX code below and a form:
<script type="text/javascript">
$(document).ready(function () {
$('form').submit(function () {
form_data = $(this).serializeArray();
$.ajax({
url: "/frontend_dev.php/coche1/update/id/1",
type: "POST",
data: form_data
});
});
return false;
});
</script>
As you can see I'm using serializeArray() but when i use serialize() it also works the same..
Why in both cases works the same? What of them should i use?
Im using symfony as php framework. I can offer you more info if you need it.