>> We have a client complaining that, when they have a poor 
>> internet connection, they can see HTML source while the 
>> FCKEditor is loading

I ran into this same problem with TinyMCE as well. So I hid the field until
the page loads. Just put the JavaScript in you header wrap the FCKEditor
field in a dive set to hidden then call the javascript in the Body Onload
event.


<script language="JavaScript">
function showMe(id) {
        var elem = document.getElementById(id);
        elem.style.visibility = "visible";
        elem.style.display = "block";
}
</script>

<body onLoad="showMe('WhenSlowLoad');">


<div id="WhenSlowLoad" style="visibility:hidden; display:none;">
.... (FCKEditor field)
</div>




Best Regards,

Dennis Powers
UXB Internet - A website design and Hosting Company
690 Wolcott Road
P.O. Box 6029
Wolcott, CT  06716
Tel: (203)879-2844
http://www.uxbinternet.com/
http://www.uxb.net/ 




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287975
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to