jquery - IE7 AJAX GET only returning part of response -
i have application can't working in ie 7 (actually, ie 10 running in ie 7 mode).
the problem appears when try ajax request using jquery. in newer browsers, response body 30 000 characters of html code, in ie7 response cut short @ 4300 characters. can't find indication ie7's response body has limitation on size. know what's going on? better; know of solution?
the server side implementation returns asp.net mvc 4
partial view, if of importance. client side code looks this.
$.get(settings.url_root + "?" + params, // typically localhost/getdata?id=1234&id=5678 null, // success function (html) { // html ~4300 chars, should ~30000 }, 'html' ) .fail(function () { // display error message });
try loading relevant parts of document using jquery .load()
specifying id of container. refer jquery .load() usage
Comments
Post a Comment