Howdy~ How do I combined the following code so I can make it work.
<body bgcolor="#CCCCCC" onload="changedate('return')" onLoad="loadPage();">
Thanks The Devil
I believe that you want to run both JavaScript functions when the web page loads. Do this by using the following code:
<body bgcolor="#CCCCCC" onload="changedate('return');loadPage();">
Howdy~ That did not work for me. Any other ideas?
It may be a problem with your JavaScript functions.
Also try:
<script type="text/JavaScript"> window.onload = function() { changedate('return'); loadPage(); } </script>
Add the code below your other JavaScript code.
And, for the future, why not post javascript questions in the javascript section? You'd be more likely to get a good answer quickly.