Answers for "set timout for a div"

6

set timeout javascript

setTimeout( () => {
 	alert("J'aime les chats"); 
}, 2000);//wait 2 seconds
Posted by: Guest on March-06-2021
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