I had made one div tag and stored its contents in a variable. If this tag contains p,b or any other tags then it should be removed from string. How
div
p,b
use the regular expression.
var regex = /(<([^>]+)>)/ig var body = "test" var result = body.replace(regex, ""); alert(result);
test
HERE IS THE DEMO
Hope this helps.