I am trying to remove iFrame tags in my docs. This is a function. But that does not work. Here is my sample code
<script> function removeiframe() { alert("Hello Lovely World"); var markup = document.body.innerHTML; var filtered=markup.replace(/(<iframe.*?>.*?<\/iframe>)/g,""); alert("he: " + markup); </script> <body onload="removeiframe()"> <iframe marginheight="0" src="http://www.metalgearrisingguide.com" marginwidth="0" frameborder="0" height="180" scrolling="no" width="210"></iframe><br> </body>
javascript html regex iframe
Onenation
source share