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

Javascript's <script> basics

here it is

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

6 Answers

Todd MacIntyre
Todd MacIntyre
12,248 Points

Do you have a question about this code? If you don't understand the basics of HTML yet, you could jump over to one of Treehouse's beginning HTML tracks offered.

What a great idea, Todd! Thanks a lot, very helpful.

it says too many <script>'s .

scripts

Todd MacIntyre
Todd MacIntyre
12,248 Points
  <script>
    alert("Warning!")
  </script> 

Can you move this alert("Warning!") code into your javascript.js file and remove the script tags?

Hi Todd, I did paste and copied but it still tells that too many script tags. is it a glitch?

i even put semicolon

Todd MacIntyre
Todd MacIntyre
12,248 Points

Please paste the instructions here and the code you are trying to use. I can better help you with this information.