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 trialRobert Stith
2,539 PointsInsert code inside shout.js? I watch the video numerous times, what I am missing?
What am I not getting?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JavaScript Basics</title>
</head>
<body>
<script src="shout.js"></script>
<script>alert("I DID IT");</script>
</body>
</html>
3 Answers
Elad Ohana
24,456 PointsHi Robert,
You wrote your code into a different <script> tag in your HTML. The challenge requires you to write your code in the "shout.js" file which shows up as a tab on top. Try it out.
Elad.
Robert Stith
2,539 PointsThanks Zelda It was staring me right in the face:)
Robert Stith
2,539 PointsOops Elad Ohana. Thank you !