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

Your email address will not be published. Required fields are marked *