Tag : javascript-strip_tags

Javascript strip tags

A very useful snippet code to strip html tags using Javascript:


var strippedString = string.replace(/(<([^>]+)>)/ig,"");

Read entire article and commentshere