I know this question may be asked before but I did not find the correct answer that works.
I tried this code
$('body *').each(function(k,v){$(v).text($(v).text().replace("Hazem","mizzo"))});
but the page crashes, I don't know why.
I'm prefer the code to be in pure javascript not jQuery. Thanks.
I know this question may be asked before but I did not find the correct answer that works.
I tried this code
$('body *').each(function(k,v){$(v).text($(v).text().replace("Hazem","mizzo"))});
but the page crashes, I don't know why.
I'm prefer the code to be in pure javascript not jQuery. Thanks.
Share Improve this question asked Jan 1, 2016 at 19:22 Hazem TahaHazem Taha 1,1846 gold badges19 silver badges31 bronze badges 3- 1 Possible duplicate of javascript replace text in the html body – Manasov Daniel Commented Jan 1, 2016 at 19:29
- 1 @ManasovDaniel: That's a duplicate indeed, but gives a terrible solution. – user1106925 Commented Jan 1, 2016 at 19:32
-
Add a
<span class="name-to-replace">Hazem</span>
to all the instances where you have the string you want to replace. Then, just use something analogous to$(".name-to-replace")
(ordocument.getElementsByClassName("name-to-replace")
as your selector. – adilapapaya Commented Jan 1, 2016 at 19:35
1 Answer
Reset to default 10You should walk the DOM, find text nodes, and replace the found text in each.
Here's a simple example. You can make walkText()
more generic by passing a callback that does the replacement.
function walkText(node) {
if (node.nodeType == 3) {
node.data = node.data.replace(/foo/g, "bar");
}
if (node.nodeType == 1 && node.nodeName != "SCRIPT") {
for (var i = 0; i < node.childNodes.length; i++) {
walkText(node.childNodes[i]);
}
}
}
walkText(document.body);
foo <b>foo</b> foo