I have a problem. I still can see that my cache is still increasing after I have placed this codes on my jsp.
<% response.setHeader("Cache-Control", "no-cache"); %>
and in my javascript/jquery which resides on the same jsp:
function waitForMsg() {
$.ajax({
type: "GET",
url : contextPath + "/groupChat",
async: true,
cache: false,
success: function (data) {
$("#divChatMessageTable").load(contextPath + "/groupChat/message");
setTimeout(waitForMsg, 1000);
},
error: function(XMLHttpRequest, textStatus, errorThrown){
setTimeout(waitForMsg, 15000);
}
});
if ($("#divChatMessageTable").height() > tableHeight) {
scrollToBottomChat ();
tableHeight = $("#divChatMessageTable").height();
}
}
I have set the cache:false in the jquery.
Btw, Im using Firefox.
Please help.
setTimeoutto success callback ofloadto allow for some time for that call to be made. Simlilarly, you are trying to test height of new content before it is loaded and it should be done within success callback ofloadalso – charlietfl Nov 12 '12 at 2:32contextPath + "/groupChat"is necessary... it sends nothing and does nothing with response.. can probably remove it and simply do theloadwith callback to check table height – charlietfl Nov 12 '12 at 2:49contextPath + "/groupChat"is used to load the data to the html/jsp table that displays chat. I'll try removing it. Thanks. – TheOnlyIdiot Nov 12 '12 at 2:54datainsuccess: function (data)but it never gets used. Instead another ajax call usingloadis being made to the other url – charlietfl Nov 12 '12 at 2:56