Hi everybody,
I got this working:
$.ajax({
formSubmit: true,
type: 'POST',
url: '/test/savetestinfos',
data: { form: $('#yw1').serialize() }
});
but this:
$.post({
formSubmit: true,
type: 'POST',
url: '/test/savetestinfos',
data: { form: $('#yw1').serialize() }
});
gives me a 400 bad request. Could anybody explain me why?
Thanks a lot