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 trial

JavaScript JavaScript Basics (Retired) Introducing JavaScript Write Another Program

Sam Khavafipour
Sam Khavafipour
336 Points

Hello! I'm struggling to finish a challenge. Initially, I'm adding a script tag fine. When I go to add a second,

script, it effects the first script executing.

I re-watched the videos many times and trying my best to follow Mr. McFarland.

Any help will be appreciated...

index.html
<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>JavaScript Basics</title>
</head>
<body>
  <script src="newscripts.js"> </script>
  <script>
    alert("Warning!");
  </script>
</body>
</html>

1 Answer

Ken Alger
STAFF
Ken Alger
Treehouse Teacher

Sam;

Welcome to Treehouse!

It looks like you have added an extra set of script tags with the src attribute. The challenge doesn't mention doing that, and that is likely the culprit as your code works fine through the challenge without them.

Happy coding,

Ken

Sam Khavafipour
Sam Khavafipour
336 Points

Hey Ken!

Many thanks for your response to my question. I was getting ahead of myself!

I also missed the *Important note when I was doing this challenge.

I'm really enjoying TreeHouse thus far. Thanks again!

best, Sam