URI:
   DIR Return Create A Forum - Home
       ---------------------------------------------------------
       Code9
  HTML https://code9.createaforum.com
       ---------------------------------------------------------
       *****************************************************
   DIR Return to: JavaScript
       *****************************************************
       #Post#: 11--------------------------------------------------
       Alerts with JavaScript & HTML
       By: Connor Date: April 1, 2011, 4:49 am
       ---------------------------------------------------------
       [code]
       <script type="text/javascript">
       function doRedirect()
       {
       alert("Alert here!");
       }
       </script>
       [/code]
       If you want it in a .html file, and you want it to pop up
       straight away when the page is opened, add this attribute to
       your body tag.
       [code]
       <body onLoad="doRedirect()">
       [/code]
       #Post#: 23--------------------------------------------------
       Re: Alerts with JavaScript &amp; HTML
       By: world Date: April 4, 2011, 5:09 pm
       ---------------------------------------------------------
       nice guide
       #Post#: 36--------------------------------------------------
       Re: Alerts with JavaScript &amp; HTML
       By: Connor Date: April 4, 2011, 5:29 pm
       ---------------------------------------------------------
       Easy shit tbh
       *****************************************************