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 trialDennis Oliphant Jr
2,751 PointsMy Javascript is not opening in order.
at the last part of the video, Dave's javascript opened as followed:
- alert box opens
- header text displays
- Second alert box.
with my code the two alerts open then header text is displayed. see code below.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <link rel="stylesheet" href="css/main.css"> <title>JavaScript Basics</title> <script> alert("Here's another message from Threehouse"); </script> </head> <body> <div class="container"> <h1>Where to place your JavaScript code.</h1> </div> <script src="scripts.js"></script> </body> </html>
1 Answer
Zimri Leijen
11,835 PointsBrowser behavior has changed in that regard, so it doesn't work as it used to do. It's normal for the page rendering to happen only after the script is finished.