Hi,
I have the following jquery code:
function update(){
$.get("getlatest.php", {
id: $.cookie('last_post_id')
}, function(response){
$('#board_posts').prepend(response);
$('.incoming_post').slideDown("slow").effect("highlight", {}, 3000);
$('.incoming_post').toggleClass("incoming_post").addClass("old_post");
}, "html");
}
The function will check if there are any new posts to the message board, and if so, will load them. For some reason, new data never loads in IE 7, but loads fine in FF and Chrome. Moreover, when I refresh the page, the data doesn't come in either - only when the cache is cleared.
Any help on this issue?