Skip to content

Instantly share code, notes, and snippets.

@ikennaokpala
Created March 22, 2011 16:43
Show Gist options
  • Save ikennaokpala/881539 to your computer and use it in GitHub Desktop.
Save ikennaokpala/881539 to your computer and use it in GitHub Desktop.
Strip html tags
jQuery.fn.stripTags = function() {
return this.replaceWith( this.html().replace(/<\/?[^>]+>/gi, '') );
};
$("#any").stripTags();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment