Hi,
My HTML page is not reading my external javascript file. I don't see anything I did wrong in the declaration so I'm stumped. Can someone spot something I don't see?
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<link rel='stylesheet' href='mystyle.css' type='text/css' media='screen' />
<script type='text/javascript' src='myscript.js'></script>
<title>Javascript Test</title>
</head>
<body onload='loaded()'>
The loaded function just has an alert box that pops up with some text which I was using to test the Javascript functionality. I've verified that the javascript file exists with the proper .js extension in the current directory. Javascript is enabled on my browser as I've tested local code to ensure it works. I'm having the problem on both IE and Firefox.