Is there a limit on the length of data given through POST type ajax method of jquery?
I'm submitting a form in the background using ajax() method:
$.ajax({type:'POST', url: '<?=BASE_URL?>comenzi/save', dataType:'json', data:$('#theForm').serialize(), success: function(response) { ...
But some of the inputs are not being sent, can not be found in the POST.
Is there a limit for this data parameter, or I should look for another problem here?
UPDATE: I've put out the form to console in two different ways:
console.log($('#theForm').serialize());
console.log($('#theForm'));
On the second output, all of my inputs are there, but in the serialized output I could not find some of my inputs. What could be the problem?
Thanks!