Skip to content

Instantly share code, notes, and snippets.

View thecotne's full-sized avatar

Tsotne Nazarashvili thecotne

  • Tbilisi, Georgia
  • 08:55 (UTC +04:00)
View GitHub Profile
@senko
senko / gist:1112574
Created July 28, 2011 21:14
DOM text search/replace plugin for jQuery.
(function($){
$.fn.textReplace = function(map, patterns) {
map = map || {};
patterns = patterns || [];
$('*', this).contents().filter(function() {
return ((this.nodeType == 3));
}).each(function() {
var old_text = $.trim(this.nodeValue);
var new_text;