what is the ajax response limit of json?
ajax, angularjs, javascript, jquery, json
Solution
There is no limit to the size of data which can be transferred via JSON. However, a large request, for example anything over 1Mb, will take a long time to receive and even longer for the browser to deserialise.
Problem
I'm trying to get a `JSON` as a `AJAX` response when entering to the site .But i want to know is there any length of object that i can get ? `GET` or `POST` ? ``` $http({ method: 'POST', url: 'php' }).success(function (data, status, headers, config) { ``` Does browser limiting it ? or any restriction from server side ? Does it depend on browsers ? - Firefox - Chrome - IE - Opera