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

task 1 is no longer passing?

after writing the code for the challenge Task 2 of 2; I got an error message that " Task 1 is no longer passing". Please help

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="script.js"></script>
  <script>
    alert("warning!");
  </script>
</body>
</html>

3 Answers

Ryan M
Ryan M
16,203 Points

Antonio is correct. The first question asks for script tags

<script></script>

The second question simply wants you to write the JavaScript inside the script tags

<script>
  alert('Warning!');
</script>

So the full code should be

<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>JavaScript Basics</title>
</head>
<body>
  <script>
    alert('Warning!');
  </script>
</body>
</html>
Antonio De Rose
Antonio De Rose
20,884 Points
<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>JavaScript Basics</title>
</head>
<body>
  <script src="script.js"></script><!--how did you end up getting this line, this is redundant-->
  <script>
    alert("warning!");
  </script>
</body>
</html>

I got it now. I thought I have to include the task 1 in order to write a function for an alert dialog with that 'warning' message for task 2. Thank you. I'm brand new learner to programming! :-(