So I'm trying to gain advance Javascript skills. So I'm doing a practical JS tutorial on Lynda.com. Chapter 3 is on EventHandlers and I'm a little confused (Note: I've deleted the code that makes the script work in all browsers). I've rewatched the videos and that hasn't been helpful at all.
- What is the
e
referring to? I don't have a variable at all named e or anything else that I can see. What is
false
referring to? Is it the same asreturn false
since I'm dealing with a link?function clickLink(e) { alert("You Clicked the Link"); } function linkClicked(e) { addEventHandler(document.getElementById("clickLink"), "click", clickLink, false); } addEventHandler(window, "load", linkClicked, false);