Вообщем, друг дал код
var this_tab_is_active = false;
$(window).blur(function() {
this_tab_is_active = false;
});
$(window).focus(function() {
this_tab_is_active = true;
});
function mChat_Refresh() {
if(this_tab_is_active)
{
$('#mchat-load-layer').show("fast");
$.post('/engine/ajax/mchat.php', {
skin: dle_skin
}, function (a) {
save_to_local_storage(a);
$('#mchat_messages').html(a);
$('#mchat-load-layer').hide("fast")
})
}
else
{
load_from_local_storage(a);
}
}
Но мне фаербаг говорит:
ReferenceError: load_from_local_storage is not defined
load_from_local_storage(a);