Brilliant, thank you very much Dennis & Dinner :)

Dominic, Developer, Dude & Dork


On 07/09/2007, Dennis Powers <[EMAIL PROTECTED]> wrote:
>
> >> 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/
>
>
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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

Reply via email to