Jquery $("body").append(data); not apending completely -
i using following function append page data current page.
$.get("/some.jsp", function(data) {     $("body").append(data); }); this code appends data when calling page in desktop browser.
when loading webpage in mobiles, doesn't append full data. appends half of data.
i thought has limitation on chars, make variable jsp page's contents string, passed string append body follows,
data = "jsp contents"; $("body").append(data); but there no use.
i checked data length follows,
console.log("data"); console.log(data.length);  it shows 6760 chars, in both desktop , mobile.
why data not appends in mobile?
check css first. think css mobile device hiding details.
Comments
Post a Comment