Skip to content

Instantly share code, notes, and snippets.

@psflannery
Created August 8, 2013 21:24
Show Gist options
  • Save psflannery/6188903 to your computer and use it in GitHub Desktop.
Save psflannery/6188903 to your computer and use it in GitHub Desktop.
var replaced = $("body").html().replace(/-1o9-2202/g,'The ALL new string');
$("body").html(replaced);
//or, as a one liner
$("body").html($("body").html().replace(/12345-6789/g,'<b>abcde-fghi</b>'));
//replace every word
$("body").html($("p").html().replace(/[a-zA-Z0-9_]\w/g,'<b>oh hai!!!</b>'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment