webmanz Posted March 23, 2018 Report Share Posted March 23, 2018 Stef No definitive reason was given as to why its best practice to place getElementById at the bottom of document when used together with anonymous functions in lesson 6 chapter 2. Would anything be different if it was placed higher up in the document? Quote Link to comment Share on other sites More sharing options...
administrator Posted March 30, 2018 Report Share Posted March 30, 2018 I would have to see the context of the video. That said, remember that JS is read from the top down. So this means you have to be sure code is read into memory before you call it. So if you have inline JS (not in a function) that is calling getElementById on a tag that has not been read into memory, you will get an error. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.