Skip to content

Instantly share code, notes, and snippets.

@travis23
Created September 9, 2020 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save travis23/ea1aeac36aa41cca39197b26d027723a to your computer and use it in GitHub Desktop.
Save travis23/ea1aeac36aa41cca39197b26d027723a to your computer and use it in GitHub Desktop.
[Javascript call function every x msec] #javascript #html #delay #sleep #pause #wait
<head>
<script>
window.setInterval(function() {myFunction()}, 500)
function myFunction() {
/* Do stuff */
}
</script>
</head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment