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 Your First JavaScript Program

document.write context not showing in order

My document.write context does not show up in order even I followed the code, , i.e. it shows up after the second alert was closed instead of the first one.

Mathias Nicolajsen
Mathias Nicolajsen
3,042 Points

Hello Ho Wai Yeung,

Could you please link your code, or paste it in? Mabey I can help you a bit more then ;)

2 Answers

Jonatas Maia
Jonatas Maia
4,386 Points

It might be happening because the script link is on the bottom of the html. Check it out. Find a code like

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

See if it is between the <body>

Mathias Nicolajsen
Mathias Nicolajsen
3,042 Points

Another thing, If the script is in a folder, you have to write the folder name before, fx:

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

(The script before the / is the folder name (The folder name is just an example) :)