Representative Line - jQuery Search n' Replace
by in Best of the Sidebar on 2012-08-09Out on the The Daily WTF Forums, user dynedain found this gem while doing maintenance on a site that's a huge pile of static HTML files:
$('.bottom_content a').each(function(){ var temp = $(this).html().replace('ClientName¬ÆClientService','ClientName®ClientService'); $(this).html(temp); });