Occurs in firefox when there’s a textarea in a hidden div.
Change in tiny_mce.js
IsCollapsed: function () (
This.getRng var r = ();
if(r.item)return false;
return r.boundingWidth==0||this.getSel().isCollapsed
)
to
IsCollapsed: function () (
This.getRng var r = ();
if(r==null||r.item)return false;
return r.boundingWidth==0||this.getSel().isCollapsed
)
[...] found the solution to the problem at Tis How I Code. There’s also some further discussion of the issue on the Moxiecode [...]
Oh thanks mate, you save my day
Thank you… already tried to fix this for some time. Now IE finally stop’s crashing because of this error…
Wow … thanks a lot. I don’t even want to imagine, what I would have messed up on my code to get rid of this error … Cheers, mate.
Thanks a lot, it was of great help.