Is there a jQuery version of this function?

string strip_tags( string $str [, string $allowable_tags ] )

strip all tags and content inside them from a string except the ones defined in the allowable tags string.

like:

var stripped = strip_tags($('#text').html(), '<p><em><i><b><strong><code>');

from:

<div id="text">
  <p> paragraph </p>
  <div> should be stripped </div>
</div>
link|improve this question

4  
phpjs.org offers a port of this function. – lonesomeday Apr 8 '11 at 23:57
When a tag is stripped, do you expect its child elements to be removed too? Can you please clarify? – karim79 Apr 9 '11 at 0:19
(So please make clear in your question whether you want strip_tags's behaviour, or the behaviour that you think it has. :D) – Lightness Races in Orbit Apr 9 '11 at 0:19
the behaviour you think I think it has :D yes, I want the content to be stripped to (including children if there are any any) – Alex Apr 9 '11 at 1:05
show 1 more comment
feedback

4 Answers

up vote 6 down vote accepted

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.

link|improve this answer
feedback

Not an actual answer, but a word of caution (depending on what you're trying to do with this):

IMHO, in almost all cases, input sanitization should be done on the server side (in this case, using the native PHP functions). If your intent is to replace PHP functionality with client-side functionality, I would strongly advise against it.

Why?

Just because you're authoring a website, it doesn't mean that:

  1. Your users have JavaScript enabled. If you aren't submitting your form strictly through script (using submit buttons, etc), it still allows users to submit invalid data (such as <script> tags, etc.)
  2. Requests may not actually be initiated by a browser at all, circumventing any JS-based input sanitization.

Again, not really answering your question, but a word of caution based on where you could possibly be headed based on your question :)

link|improve this answer
no, I'm trying to allow visitors to "quote' comments when they comment. and when they click the quote button, I want the text from the comment they quoted to appear in the textarea, without tags, because it may scare them – Alex Apr 9 '11 at 1:23
@Alex - have a look at the example linked in my answer. I have deliberately coloured the p tags to emphasize that the 'whitelist' remains unaltered. All text is preserved. – karim79 Apr 9 '11 at 1:30
thanks, this is shorter than the one on phpjs :) – Alex Apr 9 '11 at 1:46
@Alex - I think you meant to accept karim79's answer, not mine :) – Demian Brecht Apr 9 '11 at 1:51
@alex Check updated asnwer – Hussein Apr 9 '11 at 2:22
show 2 more comments
feedback

UPDATE

Use the following to strip tags while keeping content

$('#text').find('p').contents().unwrap();

This will strip p tag where p is a child element of '#text'.

Check working example at http://jsfiddle.net/YWCsH/

link|improve this answer
That's not what strip_tags does. The OP says that content from inside stripped tags is removed, but that's not true. – Lightness Races in Orbit Apr 9 '11 at 0:07
This is what OP meant. read the question – Hussein Apr 9 '11 at 0:11
@Hussein: Actually neither his text nor his example make it clear either way (he merely describes what strip_tags does, incorrectly). The only thing we can go on is that he wants a port of strip_tags, which does not behave as your Javascript does. – Lightness Races in Orbit Apr 9 '11 at 0:13
It's a she. This is what i understood from her question regardless to whether she referenced strip_tags correctly. – Hussein Apr 9 '11 at 0:17
@Hussein: Fair enough. It's a gamble either way: let's wait and see. :) – Lightness Races in Orbit Apr 9 '11 at 0:18
show 1 more comment
feedback

To remove all tags you can use

$('<div>Content</div>').text()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.