イベントを使用するたびに、onload イベントを含む行を指している「オブジェクトが必要です」という JavaScript エラーが発生します。これが私のウェブページの簡単な表現です。
<html>
<head>
<script type='text/javascript' src='myScript.js'>
//script containing doSomething()
</script>
</head>
<body onload = "doSomething('stringArg', 0);"> //<--does not execute, throws error, EDITED for proper quotation
//body of site
<script type='text/javascript'>
//test call
doSomething('stringArg', 0); //<--executes just fine, no errors
</script>
</body>
</html>