vote up 0 vote down star

I'm creating an HTML editor, similar to this one I'm typing in right now with the output below. I'm using an iframe and dumping the $htmlTextBox.val() into the body of the iframe.

I'm trying to create a stylesheet inside the iframe so that it looks as good as it works.

Thanks in advance!

$htmlTextBox.keyup(function(){
    SetPreview();
});   

function SetPreview()
{
    var doc = $preview[0].contentWindow.document;
    var $body = $("body", doc);

    $body.html($htmlTextBox.val());
}
flag

1 Answer

vote up 1 vote down check

Whilst you can interact with an iframe's document.styleSheets, the old-school reliable way is either to have the stylesheet there in the first place (by writing an iframe-src to point to an empty document with the desired stylesheet), or put it in place with document.write(). For example:

<body>
    <iframe></iframe>
    <script type="text/javascript">

        var d= frames[0].document;
        d.open();
        d.write(
            '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN" "http://www.w3.org/TR/html4/loose.dtd">'+
            '<html><head><style type="text/css">'+
            'body { font-size: 200%; }'+
            '<\/style><\/head><body><\/body><\/html>'
        );
        d.close();

        d.body.innerHTML= '<em>Hello</em>';
    </script>
</body>

(This will also set the iframe document to Standards Mode, assuming that's what you want.)

link|flag
I went the route with basic page with the stylesheet included in the <head>. $(document).ready(function(){ SetPreview(); }); does not set the iframe body in Chrome, Safari, or FireFox, but it works in IE... – Hunter Daley Mar 9 at 14:28
just some background, I'm setting the Preview on page load and then on each keyup in the TextArea – Hunter Daley Mar 9 at 15:09
jQuery's document.ready only requires the main document to be loaded, it doesn't have to wait for the iframe content to load. So it can be a race condition to see whether the iframe document's <body> loads before ‘ready’, and hence whether document.body is available yet. – bobince Mar 9 at 15:10
(Which is why the otherwise quite ugly document.write() approach is often used.) – bobince Mar 9 at 15:10
I will give that a shot. Is there a way to ensure that the iframe is finished loading from the containing document? IE7 worked as expected, which was a shock. That actually makes me think that it should not have worked. – Hunter Daley Mar 9 at 16:57
show 3 more comments

Your Answer

Get an OpenID
or

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