Call function every thirty seconds?
(ignore the 500 please, that's just for testing purposes)
- $(document).ready(function(){
- setTimeout(function(){
- alert('hey');
- }, 30000);
- });
Any idea regarding this? I've looked up several questions on google, although I haven't found a specific answer sadly enough.