function reloadcontent ()
{
$.get("/match-on-line.php", function(data){$(".on-line-match-now").html(data);});
}
(document).ready(function(){
reloadcontent();
setInterval('reloadcontent()', 6000);
});
на главной работает, а во втором или третьем уровне вложенности страницы отказывается работать.
(document).ready(function(){ - is not a function