questionaries
$0.getattribute() not working
$0.value not working
var i = 5;
var timer = setInterval(function() {
//console.log(--i);
document.getElementById('b').innerHTML=i;
i-=1;
if (i === -1) clearInterval(timer);
},1000);
$0.getattribute() not working
$0.value not working
var i = 5;
var timer = setInterval(function() {
//console.log(--i);
document.getElementById('b').innerHTML=i;
i-=1;
if (i === -1) clearInterval(timer);
},1000);
Comments
Post a Comment