function updatetimer() {
var d = new Date();
var n = 99-Math.round(d.getMilliseconds()/10);
if(timeleft == 120) n = 0;
if(n < 0) n = 0
if(n < 10) $('#timeleft').text(timeleft+'.0'+n);
else $('#timeleft').text(timeleft+'.'+n);
}
function reloadinfo() {
$.ajax({
type: "GET",
url: "currentgame.php",
success: function(msg){
$("#gameid"
.text("#"+msg);
}
});
есть ли тут что то в 34ой и 39ой строке ?а то на ошибку ругается
Uncaught ReferenceError: $ is not defined
Добавлено 30.06.15 в 02:20:24:
js