Closed GoogleCodeExporter closed 8 years ago
May be your problem is about the security settings like Issue 2 [0]. If you
have turn
off the ActiveX it won't work.
[0] http://code.google.com/p/jwysiwyg/issues/detail?id=2
Original comment by joksnet
on 24 Mar 2008 at 4:48
Has anyone discovered a way to make this work in IE6? I am getting a
'permission denied' when the script tries
to access $(this.editorDoc) e.g. line 407 in v0.3.
Original comment by airbed...@gmail.com
on 9 Jun 2008 at 2:43
[deleted comment]
Here's what I did following the tip on the ExtJS forum.
I added the following 3 lines just above the line (373 in the v0.3) where
'this.editorDoc' object is defined.
>>>
if (jQuery.browser.msie && '6.0' == jQuery.browser.version) {
$(this.editor).document().designMode = 'on';
}
this.editorDoc = $(this.editor).document();
<<<
Now it works fine in IE6 too!!
Original comment by cont...@jakubpawlowicz.com
on 18 Jun 2008 at 12:08
Made my day!
Original comment by glum...@gmail.com
on 18 Jun 2008 at 12:12
What about putting the designMode = 'on' before open the document ? I've change
that
in r23.
Original comment by joksnet
on 18 Jun 2008 at 12:24
Works fine as well! Thanks for updating the source.
Original comment by cont...@jakubpawlowicz.com
on 18 Jun 2008 at 12:36
Ok. Thanks for the solution.
Original comment by joksnet
on 18 Jun 2008 at 12:39
Original issue reported on code.google.com by
StarkTal...@gmail.com
on 19 Mar 2008 at 1:53