<label for="id_about">Profile</label>
How do I change this using JavaScript or jQuery? I want to only change this instance to replace profile with something else like About. I know how to change all “Profile” word from my website. But I only want to change this particular specific instance.
Advertisement
Answer
You can search using attributes:
$("label[for=id_about]").html("new text here"); // or .text("new text here")
Remember that jQuery lets you use the full power of CSS selectors to find elements on the page (it even adds some of its own, but in general try to stick to official ones).
For anyone who doesn’t use jQuery, you can still use the full range of CSS selectors on any modern browser (and IE8) via querySelector
(find the first matching element, or null
if no match) or querySelectorAll
(get a NodeList
of matching elements, which might be empty):
document.querySelector("label[for=id_about]").innerHTML = "new text here";