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) Storing and Tracking Information with Variables The Variable Challenge Solution

Why sometimes the <script> tag that goes in the <body> , is inside of a container <div> ? Isn't that wrong?

The html example of the section goes like this:

<body>
  <div class="container">
  <h1>The Story Maker</h1>
  <script src="story.js"></script>
  </div>
</body>

Is it correct or wrong? It's the first time I see it in a few months of studying and making some projects. Thank you in advance.

1 Answer

Jamie Reardon
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jamie Reardon
Treehouse Project Reviewer

It isn't wrong because you can place script tags anywhere within the body element. Ideally and best practice, tags should be placed just before the closing body tag for optimal site performance in terms of speed. The reason this particular script is inside of a container is because of the way the teacher has made the script. He is using document.write which will literally place the content where the script is defined in the markup. He wanted to use a styled div container to hold all of the JavaScript content that is being written in that script. In a later course, you will see how you can target elements and dynamically change their contents without the need of placing the script in certain areas like this.

Thank you.