Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I clear the content of my IFRAME element, using javascript, without loading a blank page into it?

I can figure out to do this: iframe_element.src = "blank.html", but there must be a better, instant, method.

share|improve this question

6 Answers

up vote 37 down vote accepted
about:blank

is a "URL" that is blank. It's always clear

You can set the page's source to that, and it will clear.

share|improve this answer
can you give me example.. how can i do it?.. – sikender Nov 23 '09 at 18:34
3  
iframe_element.src = "about:blank" – victor hugo Nov 23 '09 at 18:38

Your technique is the most robust. Its the one I use myself. At times content may be delivered over HTTPS and the use of about:blank can cause warning messages to appear to the effect of "do you want to include content from unsecure location" or some such thing.

Something being instant is a matter of perception however if you have a single Blank.html file on your site configured with a long cache expiry the client will only ever fetch the page once (at the most once per-session).

share|improve this answer

You could also do this:

<html>
<head>
<script>
    var doc = null;
    window.onload = function() {
        alert("Filling IFrame");
        doc = document.getElementById("test");

        if( doc.document ) {
            document.test.document.body.innerHTML = "<h1>test</h1>"; //Chrome, IE
        }else {
            doc.contentDocument.body.innerHTML = "<h1>test</h1>"; //FireFox
        }

            setTimeout(function() { 
                alert("Clearing IFrame");

                if( doc.document ) {
                    document.test.document.body.innerHTML = ""; //Chrome, IE
                }else {
                    doc.contentDocument.body.innerHTML = ""; //FireFox
                }

            }, 1000);
        };
    </script>
</head>

<body>
    <iframe id="test" name="test">

    </iframe>
</body>
</html>
share|improve this answer

Or you can do this :

var iframe_element = window.frames['iframe_name'];
iframe_element.document.open();
iframe_element.document.close();
share|improve this answer
You can also write to the document while it is open, if you want to add a basic message (or what ever) to the window. – Trisped Aug 9 '12 at 1:04
This does not seem to work correctly if you use jQuery on the iFrame. It worked fine for me using javascript in the same page as the iFrame was defined. – Trisped Aug 23 '12 at 22:56

I have had difficulties with "about:blank" on pages with many IFrames. It does not seem to be a valid location in every browser (I never found out for sure, though). Anyway, I am happy with javascript:void(0);

share|improve this answer
what happens if Javascript is disabled? – AnthonyWJones Nov 23 '09 at 18:36
He is specifically asking how to reset a IFrame location after Javascript. While I imagine that javascript: urls gracefully downgrade, I don't know for sure. – Pekka 웃 Nov 23 '09 at 18:41

function getContentFromIframe(iFrameName) {

var myIFrame = document.getElementById(iFrameName);
var content = myIFrame.contentWindow.document.body.innerHTML;

//Do whatever you need with the content    

}

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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