Is there a jQuery version of this function?
string strip_tags( string $str [, string $allowable_tags ] )
stri
To remove just the tags, and not the content, which is how PHP's strip_tags() behaves, you can do:
var whitelist = "p"; // for more tags use the multiple selector, e.g. "p, img"
$("#text *").not(whitelist).each(function() {
var content = $(this).contents();
$(this).replaceWith(content);
});
Try it out here.