Rich text using an iFrame in Firefox hanging? | April 12th, 2007
Try calling the close method on the document.
var edit = $( 'rte' ).contentWindow.document;
edit.open();
edit.write("
Lorem ipsum dolor sit amet
");
edit.close();
edit.designMode = "on";
Nothing like a few lines of code solving a problem thats over a day old. GAAA!