Hello,
I am writing an application that uses the ever-lovely FCK editor.
This is the first application I've written that uses 100% ajax. At no point in time does the page ever entirely reload or refresh.
Prior to loading any of the FCK stuff, my dom basically looks like this (as seen in firebug):
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"> <head></head> <body> <form id="rshStorageForm"></form> <div id="centered"></div> </body> </html>
After first replacing the contents of $('centered') with a page that includes 1 FCK editor, I get 7 of these inserted before body:
<iframe scrolling="no" frameborder="0" style="border: 0pt none ; margin: 0pt; padding: 0pt; background-color: transparent; background-image: none; height: 0px; width: 0px; position: absolute; z-index: 10000;" src="javascript:void(0)"> </iframe>
After replacing the contents with another page that includes another FCK editor I get 12 of them.
Another load with another FCK editor, and now I'm up to 18.
This growth seems to go on endlessly. Is there a way to stop this from happening?
Thanks to whomever reads this, and thanks again to the developers.