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
You want the :contains() selector. http://api.jquery.com/contains-selector/
:contains()
$("*:contains('Original Text')").each(...);