I have a web page for the Podunk company. But every time Podunk appears on the page (no matter where it is) it needs to be shown as Podunk!
Note that this is ANYWHERE on the page so it could be in header tags, list tags, in multiple nested DIVs, etc.
What is the best way to go about this? I’m thinking that jQuery is the better solution (as opposed to CSS) but I don’t know how to go about it? Can someone please provide a code snippet for this kind of replacement on an entire page element.
My original answer was incorrect (as pointed out in the comment 🙂 ) I have edited this answer to include the correct solution.
This has the downside that any element that has only Podunk in it gets and additional span element. ie, if you have
you end up with
I think with a little consideration this could be overcome.