Answers for "setTimeout trong JS W3Schools"

150

javascript settimeout

setTimeout(function(){
 	alert("Sup!"); 
}, 2000);//wait 2 seconds
Posted by: Guest on June-27-2019
0

how to set timeout for a div tag in html

<script>
  const timeout = document.getElementsByClassName('classname')
  setTimeout(hideElement, 1000) //milliseconds until timeout//
  function hideElement() {
    timeout.style.display = 'none'
</script>
<div class="classname">
  <span> &times; </span>
Posted by: Guest on May-05-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language