Hi!!
When the ckeditor is loaded, the console displays an error: b is not a function
...ar b=this.languages,e=e||navigator.userLanguage||navigator.language||a,c=e.toLow... |
ckeditor.js (línea 213)
The problem is that sometimes the fckeditor load well and sometimes not, I think when no load is because of this error.
Someone can help me?
Apologize for my English

I would advise you have to
I would advise you have to use:
<script type="text/javascript"> //<![CDATA[ $( document ).ready(function() { // Handler here. }); //]]> </script>While JavaScript provides the event for executing code when a page is rendered, this event does not get triggered until all assets such as images have been completely received.
For example:
<textarea name="txtApproval" id="txtApproval" rows="10" cols="50">Sample Here!!!</textarea> <script type="text/javascript"> //<![CDATA[ $(document).ready(function() { CKEDITOR.replace( 'txtApproval', { toolbar: 'Basic', height: 150 }); }); //]]> </script>// Handler for .ready() called.});