Are there any URI Too Long workarounds?
Use the POST HTTP address instead of GET:
$.ajax({ url: '/foo', type: 'POST', data: { value: someVariableThatCouldBeHuge }, success: function(result) {
or equivalent:
$.post('/foo', { value: someVariableThatCouldBeHuge }, function(result) {
source share