runing javascript

  • Thread starter Thread starter Guest
  • Start date Start date
hey all,
how do you run a section of javascript everytime the page loads?

Er...

<html>
<head>

</head>

<body>
<script>
alert('This runs every time the page loads');
</script>
</body>
</html>
 
Back
Top