Is there a size limit when using the "headers" property of the jQuery.ajax method?
i.e.:
$.ajax({
type: 'POST',
url: 'submit.php',
headers: { 'CUSTOM_DATA': someBigString },// Is there a limit for "someBigString"?
success: function( returnData ){
returnTestData = returnData;
}
});