Skip to content

Instantly share code, notes, and snippets.

@hmert
Created July 28, 2013 07:47
Show Gist options
  • Save hmert/6097857 to your computer and use it in GitHub Desktop.
Save hmert/6097857 to your computer and use it in GitHub Desktop.
if(!String.prototype.reverse)
{
Object.defineProperty(String.prototype, 'stripTags',
{
value: function()
{
return this.replace(/<\/?[^>]+>/gi, '');
},
enumerable: false
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment