How do i make a jQuery code that replaces only text in a .HTML document and not the html-tags.
Lets say that i want to replace all "b" characters to "c" in the html code. Then i don't want that the html code is replaced.
<b>bbbbb</b>
I mean that when replacing it should be only:
<b>ccccc</b>
So that the b in the html code isn't replaced.
Thanks in advance!!