I\'m playing around with finding and replacing text.
The only problem I\'m having is finding a text string, that is not attached to an element with an ID. Otherwise
$("*").contents().each(function() { if(this.nodeType == 3) this.nodeValue = this.nodeValue.replace("old", "new"); });