Skip to content

Instantly share code, notes, and snippets.

@yankiara
Created January 8, 2020 15:11
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 yankiara/c2ff652b94c39cd602d15303d87ab14c to your computer and use it in GitHub Desktop.
Save yankiara/c2ff652b94c39cd602d15303d87ab14c to your computer and use it in GitHub Desktop.
Replace characters in jQuery
jQuery("h1, h2, h3, h4, h5, h6").each(function() {
jQuery(this).html(function(index, text) {
return text.replace( /([',.;:?!])/g, '<span class="special">$1</span>' );
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment