Skip to content

Instantly share code, notes, and snippets.

@travis23
Created September 9, 2020 15:47
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/2bd2737184d3326a9af9ebf3782b39d9 to your computer and use it in GitHub Desktop.
Save travis23/2bd2737184d3326a9af9ebf3782b39d9 to your computer and use it in GitHub Desktop.
[Javascript wait before carrying out command] #javascript #html #delay #sleep #pause #wait
<head>
<script>
function flashBackground() {
document.getElementById("element").style.background = 'White';
setTimeout(() => {document.getElementById("element").style.background = 'Yellow';}, 100)
}
</script>
</head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment