Guest User

Untitled

a guest
Jul 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. Do not have "display: none;" in the table element.
  2.  
  3. Add this at the bottom of the <body>:
  4.  
  5. <script type="text/javascript">
  6. //<![CDATA[
  7. document.getElementById("AutoNumber1").style.display = "none"
  8. setTimeout(function () {
  9. document.getElementById("AutoNumber1").style.display = "block"
  10. }, 5 * 60 * 1000)
  11. //]]>
  12. </script>
  13.  
  14. The content should display after 5 seconds.
Add Comment
Please, Sign In to add comment