show alert after 2 sec using pure javascript code example
Example: 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> × </span>