Skip to content

Instantly share code, notes, and snippets.

@benbaker
Created December 30, 2013 08:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benbaker/8179338 to your computer and use it in GitHub Desktop.
Save benbaker/8179338 to your computer and use it in GitHub Desktop.
jquery to add spans on regex
$('p.menu').html(function(i,el) {
return el.replace(/\|/g, '<span class="sp">|</span>');
});​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment