JS - Call a function after certain time period

by barkkathulla 2014-03-07 15:29:09


setInterval(function(){alert("Hello")},3000);

also you can use,

setTimeout(function() { alert("your text"); }, time);

1144
like
0
dislike
0
mail
flag

You must LOGIN to add comments