Javascript

From Richard's Wiki
Jump to: navigation, search
<script type="text/javascript" language="javascript">
   function GoBack()
   {
       window.history.forward();
   }
   </script>
//Call this JavaScript function on the onload event of body tag.
<body onload="GoBack();">