Is there a jQuery version of this function?
string strip_tags( string $str [, string $allowable_tags ] )
stri
To remove all tags, could use:
var StrippedString = OriginalString.replace(/(<([^>]+)>)/ig,"");
Code from: Strip HTML Tags in JavaScript