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

I am doing what is telling me to do but it still keeps sayin call document.write function; I’m confused.

The words “Welcome to my site” are appearing on my webpage but the program says that I am still doing it wrong. Can I please have an example or better help understanding?

I have just done the challenge myself and it worked fine. Can you show me your code and I will review for mistakes.

Thanks, Ryan.

1 Answer

Zack Jackson
Zack Jackson
30,220 Points

Place the document.write while passing in the text as a string within the script tags.

<script>
// Write your code here.
  document.write("Welcome to my site");

</script>