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 trialShreemangal Sethi
Full Stack JavaScript Techdegree Student 15,552 PointsError with the textContent attribute.
Hi while solving this challenge on adding "document.querySelector("h1").textContent = "BOOM!", i get an error "Uncaught TypeError : Cannot set property 'textContent' null".
2 Answers
Shreemangal Sethi
Full Stack JavaScript Techdegree Student 15,552 PointsHi i got the solution to the error. To solve this error, i had to make sure that the <script> tag comes after the element that i wanted to select. Thanks
Jonathan Grieve
Treehouse Moderator 91,253 PointsIt looks like it's not picking up the element you want to select, properly.
Are you sure it exists in the HTML? Or that you have saved all the files in your workspace/text editor. :-)
fiona wang
1,595 Pointsfiona wang
1,595 PointsThank you!
It works after add the <script> tag right after the element in the HTML.