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 trialJoshua Bivens
8,586 PointsHow do I toggle a button's text when clicked?
I'm trying the "perfect" part of a js todo app project. I want to toggle a button to read "Save" when in an edit mode and "Edit" when not. How?
2 Answers
Sean T. Unwin
28,690 PointsUse .textContent
for modern browsers or .firstChild.nodeValue
for IE8 and less.
Of note, using .innerText
is not compatible with Firefox so that is why I didn't suggest it even though Andrew Chalkley uses it in the course.
Click to view a functional example on Codepen or see the code below for a light example.
E.g.
if (myBtn.textContent === "Edit") {
myBtn.textContent = "Save";
} else {
myBtn.textContent = "Edit"
}
:)
Brian Polonia
25,139 PointsI posted an answer to this same question, in reference to the last video of the Interactive Web Pages with JavaScript course.
Here is the link: Click Here
Hope this helps.
- Brian
Joshua Bivens
8,586 PointsThanks!