<script>
var counter = 10;
setInterval(function() {
counter--;
document.getElementById("count").innerHTML = 'The page will be refresh after '+counter;
if(counter == 0)
{
counter=10;
}
}, 1000);
</script>
<div id="count"></div>
Do feel free to ask any questions that you may have concerns to web. No Compromise on Learning!
< ?php $mysqlUserName = 'databaseusername' ; $mysqlPassword = 'databasepassword' ; $mysqlHostNa...
No comments:
Post a Comment
Please Comment Here!