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 trialJavid Abbasov
9,243 PointsI do not undeerstand the meaning of this code(
I do not undeerstand the meaning of this code(( What is the difference between it and document.write() ?
function print(message) { var div = document.getElementById('output'); div.innerHTML = message; }
2 Answers
Steven Parker
231,268 PointsThere are several differences between these mechanisms, but two really stand out for me.
- Changing innerHTML on an element affects only that element. document.write appends text to the current state of the document, without reference to any particular element.
- Even more important, using document.write after a page is completely loaded will wipe out the original page completely and begin rebuilding it from scratch. But you can safely change innerHTML on an element anytime during the life of the page.
Alex Gustafson
14,207 PointsYou can watch Dave explain the code earlier in the course:
This discussion begins at about 0:54
jack AM
2,618 Pointsjack AM
2,618 PointsThis has a pretty good explanation on the two differences
http://stackoverflow.com/questions/10085109/when-should-one-use-innerhtml-and-when-document-write-in-javascript