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 trialMichael Webber
4,919 PointsI believe I have the same exact code as you do here, but My Browser isn't launching the 2nd Notification, as in the vid.
Near the end of the video, when loading the augmented "order" of the code, with the <script src=...
I do not get the 2nd notification
<!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 Treehouse"); </script> </head> <body> <div class="container"> <h1>Where to place your JavaScript code.</h1> </div> <script src="scripts.js"></script> </body> </html>
2 Answers
Stefan Osorio
16,419 Pointsalert(Here's another message from Treehouse");"
If this is literal, you are missing a quotation mark right between "alert(" and "Here's"
Mihail Gumennii
9,536 PointsHi Michael, I'm glad that you already figure it out, just want to make sure you have it this way alert("Here's another message from Treehouse");
Michael Webber
4,919 PointsMichael Webber
4,919 PointsNevermind, I figured it out.