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

ofri farjune
ofri farjune
915 Points

Why is it not working?

I am tryin to answer the task (number 1 and 2). I was able to figure out number 1. But when I add the code to number 2, I get a message saying task 1 is no longer write? What am I doing wrong?

Here is the code I wrote: <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>JavaScript Basics</title> </head> <body> <script src="Ofri.js"></script> <script>alert("Warning!");</script> </body> </html>

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

2 Answers

Jake Lundberg
Jake Lundberg
13,965 Points

Remove the first script tags you added, the ones that say:

<script src="Ofri.js"></script>

they only want you to have one set of script tags for number one.

Shawn Boyd
Shawn Boyd
14,345 Points

Your first set of script tags is likely what's causing the problem. You don't need to source in an external .js file. The challenge is just asking you to write the script inline, like you did between the second set of script tags. Try taking out that first line of script tags.