Javascript strip tags
Posted on: July 1, 2013 /
Categories: JavaScript
A very useful snippet code to strip html tags using Javascript:
var strippedString = string.replace(/(<([^>]+)>)/ig,"");
Read entire article and commentshere