vote up 2 vote down star
1

OK, every other browser works fine with the method I have coded so far but for some reason Internet Explorer will not work. I have spent hours of time (more time than actually developing the feature!) on compatibility and am close to giving up!

I have a forum and one of its neat features is the WYSIWYG editor. For that, I essentially have an IFrame that acts as the document:

<iframe name="writer" src="/scripts/blank.html" class="writer"></iframe>

This is the current state of the JavaScript (constantly updated):

function initEditor()
{
    w = frames['writer']
    wc = g('writerCopy')

    if(w == null) return

    frames['writer'].document.designMode = 'on'
    frames['writer'].document.body.innerHTML = styleSheet+wc.value
    frames['writer'].focus()
}

It works partially now, but fails on the line:

frames['writer'].document.body.innerHTML = styleSheet+wc.value

in Internet Explorer with "'frames.writer.document.body' is null or not an object".

flag

Are you getting a JavaScript or IE error when you do this, or just it just not work? – Welbog Jan 21 at 18:04
I get a meaningless JavaScript error. I'll add it to the post in one minute. – PythonPower Jan 21 at 18:23
You could clarify your question by adding some info as to what you have done and what is your debugging setup, so as to avoid redundant questions. You also assume that the answer must involve the try-block, but leave that to the answerers or clarify why. – Adriano Varoli Piazza Jan 21 at 18:25
I am open to other methods (that's just a suggestion). – PythonPower Jan 21 at 18:33
Did you name your frame? otherwise "writer" would be undefined. And once again, hace you checked that IE supports designMode? I believe not. – jishi Jan 21 at 19:05
show 4 more comments

7 Answers

vote up 3 vote down

Have you tried putting semicolons at the end of your javascript lines?

link|flag
And use === to compare null – StingyJack Jan 21 at 18:24
Should I be? I'll try it now. – PythonPower Jan 21 at 18:24
That doesn't matter in his case. – jishi Jan 21 at 18:34
It's generally easier to read for other JS coders if semicolons are used. I don't think this affects the results, however. – strager Jan 21 at 20:07
vote up 3 vote down

Have you activated IE's debugging facilities?

link|flag
vote up 2 vote down

I'm not even sure IE supports that designMode.

And, .contentDocument is only IE8, IE7 and less uses .contentWindow.document, but iframe windows are part of the frames-collection.

try this, should be crossbrowser:

<iframe name="writer"></iframe>

frames["writer"].document.body.innerHTML = "some html...";
link|flag
I was just getting ready to suggest the frames collection – Isaac Dealey Jan 21 at 19:18
Changed, it works far better now - thanks! But it still fails (as noted above). – PythonPower Jan 21 at 19:46
vote up 1 vote down

You need to point your iframe to a dummy document for IE. Just create a file blank.html with the following:

<html><body></body></html>

and set <iframe src="blank.html" ... >

Then you can go about referencing frame.document.body.innerHTML = '...' to your hearts content.

BTW that is a terrible title to a question.

link|flag
I think this is his problem... and I've update the title. – Prestaul Jan 22 at 3:51
Thanks for the idea but it still gives the same error. I checked manually that the /blank.html page loads as it should and included the exact code above. – PythonPower Jan 22 at 13:05
It'd be easier to just use <iframe src="about:blank" ...> -- there's no need to create another file when the browser is perfectly capable of generating a blank page. – Evan Hanson May 15 at 20:01
vote up 0 vote down

Am I missing something here? shouldn't you use something like:

window.frames[nameOrNumberOfFrame]...

See also in MSDN:

This collection contains only window objects and does not provide access to the corresponding frame and iframe objects. To access these objects, use the all collection for the document containing the objects.

link|flag
I am using window.frames now. Are you suggesting I should use the <i>all</i> collection instead? – PythonPower Jan 21 at 20:21
I am suggesting you use what ever Microsoft declares you should use - its their browser after all... – Dror Jan 22 at 7:06
vote up 0 vote down check

In the end I used frames['frameName'].document.write('someText') but only if the other method fails.

link|flag
vote up 0 vote down

Evidently IE8 does not make frame elements available until the entire parent page has loaded. Also note, you can write to the frame before the parent page loads, but this will overwrite the frame and prevent it from being loaded.

The easy solution is to move the InitEditor() call from inside the body to here:

<body onload="InitEditor()">
link|flag

Your Answer

Get an OpenID
or

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