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 trialVic Mercier
3,276 PointsWhat is the difference between the text method and the html method?
I have some difficulties with that course.It not explained clearly.
1 Answer
Steven Parker
231,269 PointsWith the html
method, what you add can contain tags which will be used as part of the document. But with the text
method, anything that might look like tags will just be added as text. For example, if you were to pass the argument "<h1>Hello</h1>"
to the html
method, you would see this on the page:
Hello
But if you give the same thing to the text
method, you would see:
<h1>Hello</h1>
Vic Mercier
3,276 PointsVic Mercier
3,276 PointsI can also pass only text in the html method.If I understand well what you wrote , it is like innerHtml and textContent.