How to do you refresh a web page from the body section.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • chaze
    Confirmed User
    • Aug 2002
    • 9774

    #1

    How to do you refresh a web page from the body section.

    I need to have a page refreshed but not from the head tags or background tag.

    The code needs to be in the body of the page.

    Thanks, Chaze
    Like the desert needs the rain
    We do fully manged WordPress, VPS, and Servers. Adult Host Pro https://adulthostpro.com/ Since 2001
  • chaze
    Confirmed User
    • Aug 2002
    • 9774

    #2
    I guess you can't ... too bad
    Like the desert needs the rain
    We do fully manged WordPress, VPS, and Servers. Adult Host Pro https://adulthostpro.com/ Since 2001

    Comment

    • dexterlab
      Registered User
      • Aug 2004
      • 8

      #3
      <code>
      <html>
      <body>
      Hello
      </body>
      <script language="javascript">
      setTimeout('reloader()', 1250);

      function reloader() {
      window.location.reload();
      }

      </script>
      </html>
      </code>

      Comment

      Working...