forgive the newbie question but I've got some simple code inside a script tag in the body of my html doc which executes flawlessly:
<script type="text/javascript">
var anchor = document.getElementById("anchor");
function showCopy(e){
copyDiv.innerHTML = "this is the new copy!"
}
function addEvent(obj, evt, fn, capture){
if (onload.attachEvent){
obj.attachEvent("on" + evt, fn);
}
else{
if (!capture) capture = false;
obj.addEventListener(evt, fn, capture);
}
}
addEvent(anchor, "click", showCopy);
</script>
however, when I move it to an external js file – I get "TypeError: Result of expression 'onload' [null] is not an object." in console. If I attempt to load the addEvent function with an window.onload handler:
addOnload(addEvent);
function addOnload(newFunction){
var oldOnload = window.onload;
if (typeof oldOnload == "function") {
window.onload = function(){
if (oldOnload){
oldOnload();
}
newFunction();
}
}
else{
window.onload = newFunction;
}
}
"obj" and "obj.addEventListener" throw TypeErrors in console. Can anyone explain why it works in the script tag, but doesn't in the linked file?