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

Issues with Chrome?

I've tried using a simple server (https://www.youtube.com/watch?v=vnPemSnnJYY) to follow along on my localhost but the code from this video doesn't work in Chrome for me. It works in firefox though. In Chrome only the first alert shows and neither the document.write function nor the second alert run, but they work in FireFox.

Can someone help me understand whats going on?

2 Answers

Brendan Whiting
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Brendan Whiting
Front End Web Development Techdegree Graduate 84,735 Points

I found a stack overflow article that explains this idiosyncrasy: https://stackoverflow.com/questions/762416/why-isnt-chrome-running-this-javascript

You would need to wrap it like this:

document.open('text/html');
document.write("<h1>Welcome to JavaScript basics</h1>")
document.close();

In real life we hardly ever use document.write, so don’t worry about it too much.

This was a shock but thanks Brendan Whiting for the rescue.