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

why is this code not working

<!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>

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>

2 Answers

Steven Parker
Steven Parker
229,744 Points

This challenge only asks for one set of script tags. This code shows two sets, and the first one has an attribute to cause it to load an external file. That's not part of the instructions.

Hi Ramin,

Is this a duplicate post? Your question was answered in a previous post.

Cheers!

Steven Parker
Steven Parker
229,744 Points

I thought it looked familar! Please only ask a question one time and then allow some time for the community to respond!