I want to remove html tags from given string using javascript. I looked into current approaches but there are some unsolved problems occured with them.
Current solutions
var StrippedString = OriginalString.replace(/(<([^>]+)>)/ig,"");