up vote 0 down vote favorite
share [g+] share [fb]

in a html page, i have

<html>
   <script>
       var cnt=''+document.documentElement.innerHTML+'';
cnt=cnt.replace(......);
   </script>
   <body> something else</body>
</html>

how to use replace function above, so that my 'cnt' var content is like below

<html>
  <body> something else</body>
</html>
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

String.replace() is not powerful enough for your case. Use this function:

function stripTags(var s) {
    var start = '<' + s + '>';
    var end = '</' + s + '>';

    while (true) {
        var pos1 = s.indexOf(start);
        var pos2 = s.indexOf(end);
        if (pos1 == -1 || pos2 == -1) { break; }
        s = s.substring(0,pos1) + s.substring(pos2+end.length);
    }
    return s;
}

This allows to remove all text in a specific element (script in your case).

link|improve this answer
feedback
window.onload = function(){
   var body = String(document.body.innerHTML).replace("...");
   document.body.innerHTML = body;

}
link|improve this answer
What's the point in wrapping a string in String()? – 999 Aug 19 '09 at 14:02
none in particular, only one practice for if the item is null. thanks for your wisdom – andres descalzo Aug 19 '09 at 14:21
feedback

Your Answer

 
or
required, but never shown

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