Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialReza Zandi
Full Stack JavaScript Techdegree Student 1,599 PointsWhy does the JS alerts run first, then html?
So, a number of people have asked this, but basically the two alerts are running before my html loads.
I believe I understand why according to this link https://teamtreehouse.com/community/javascript-prompt-executing-before-documentwrite-statements
Is it that now, browsers handle JS first, then move on to HTML, no matter the order? If so, then what the video is talking about is slightly outdated then, right? :)
2 Answers
Steven Parker
231,236 PointsYou're right, browser behavior has changed and now it's normal for the page rendering to happen only after the script is finished. There's some Teachers Notes comments about this, but not on every page. They'll eventually refresh all the courses the demonstrate the earlier behavior.
But the good news is that you'll soon learn much better techniques for user interaction that isn't subject to this issue and make the page fully responsive. You'll probably never use the more primitive methods again after that.
Reza Zandi
Full Stack JavaScript Techdegree Student 1,599 PointsSweet, thanks so much for the quick answer, that clears up the confusion.