Куда прописать этот код - Страница 1
DoKeR28 :
Куда прописать этот код
12 Апр 2014Ребята в какую строку прописать в теме в файл хед
эти Ajax оповищения ????
################################################
if (isset($user) && $webbrowser == true)
{
?><sсript>
function show()
{
$.ajax({
url: "/ajax/frend.ajax.php",
cache: false,
success: function(html){
$("#frends").html(html);
}
});
}
$(document).ready(function(){
show();
setInterval('show()',10000);
});
</sсript><div style="position
ed; left: 10px; bottom:15px;" id="frends"></div><?
}
#################################################