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
$("*").each(function () { if ($(this).children().length == 0){ $(this).html($(this).html().replace(/Old String/g, "New String")); }});