I used this code to strip all tags but I wan't to save some tags like and so on... How can I do? I can't understand how can I filter tags

/***************************************************
    STRIP HTML TAGS
    ****************************************************/
    function strip_tags(html){

        //PROCESS STRING
        if(arguments.length < 3) {
            html=html.replace(/<\/?(?!\!)[^>]*>/gi, '');
        } else {
            var allowed = arguments[1];
            var specified = eval("["+arguments[2]+"]");
            if(allowed){
                var regex='</?(?!(' + specified.join('|') + '))\b[^>]*>';
                html=html.replace(new RegExp(regex, 'gi'), '');
            } else{
                var regex='</?(' + specified.join('|') + ')\b[^>]*>';
                html=html.replace(new RegExp(regex, 'gi'), '');
            }
        }

        //CHANGE NAME TO CLEAN JUST BECAUSE 
        var clean_string = html;

        //RETURN THE CLEAN STRING
        return clean_string;

**EDIT**** This is my HTML code

<body class="portrait" onLoad="prepareImages()">
    <div id="title_wrapper"><h2 id="title"><a href="[[[LINK]]]">[[[TITLE]]]</a></h2></div>
    <h2 id="subtitle">[[[DATE]]]</h2>
     <div id="content">
        [[[FULL CONTENT]]] etc....
    </div>

I used your function in this way (what I must replace is the: [[[FULL CONTENT]]] etc....)

(strip_tags(contentElem,"<img>");

without results. How can I rewrite the [[[FULL CONTENT]]] etc.... with the [[[FULL CONTENT]]] etc.... without html tags except ?

link|improve this question

67% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Eval? Ugh, that is really ugly code. It matches all tags by using a regular expression pattern.

  • If the function call has less than 3 parameters, it just strips all tags.
  • If the function call has at least 3 parameters:
    • The third parameter is a string like "a", "b", "strong". The quotes are required, thanks to the ugly evil eval construct.
    • if the second parameter is a truth-value (true for example), the third parameter is the list of tags that are allowed
    • if the second parameter is a false-value (false for example), the third parameter is the list of tags that are denied

If you need a proper strip_tags function, have a look at http://phpjs.org/functions/strip_tags:535

link|improve this answer
+1 for php.js :-) – Rocket Jan 5 at 19:15
Edit my question! – Usi Usi Jan 6 at 0:48
@UsiUsi I assumed that you were familiar with PHP and its strip_tags function. What do you exactly want to achieve? Replace a part of a text or replacing the contents of the page? – Lekensteyn Jan 6 at 9:48
replacing the contents of the page! – Usi Usi Jan 6 at 10:25
I don't see the link between strip_tags and your actual goal, but replacing the contents of an element with ID content can be done with document.getElementById("content").innerHTML = "<b>content</b> <i>here</i>"; – Lekensteyn Jan 6 at 12:01
show 1 more comment
feedback

Here's the strip_tags() with allowable tags (from phpjs.org ).

// allow can be a string like '<b><i>'
function strip_tags(str, allow) {
  // making sure the allow arg is a string containing only tags in lowercase (<a><b><c>)
  allow = (((allow || "") + "").toLowerCase().match(/<[a-z][a-z0-9]*>/g) || []).join('');

  var tags = /<\/?([a-z][a-z0-9]*)\b[^>]*>/gi;
  var commentsAndPhpTags = /<!--[\s\S]*?-->|<\?(?:php)?[\s\S]*?\?>/gi;
  return str.replace(commentsAndPhpTags, '').replace(tags, function ($0, $1) {
    return allow.indexOf('<' + $1.toLowerCase() + '>') > -1 ? $0 : '';
  });
}
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.