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