0
I have a little problem in Ckeditor, I am instantiating in my page the link to access the main code of ckeditor and putting in my fields the respective ids, I already transferred the folder ck editor to my server, but the edit field does not appear on the screen. follows part of my code:
<html>
This is my textarea to be replaced with Ckeditor. // Replace the with a Ckeditor // instance, using default Configuration. CKEDITOR.replace( 'Editor3' );
<html> <head> <script src="http://www.dpaulatreinamentos.com/system/teste03/ckeditor/ckeditor.js"></script> </head> <body> <textarea name="Lousa" id="Editor3" Rows="10" cols="80"> This is my area to be replaced with Ckeditor. </textarea> <script> // Replace the <textarea id="editor1"> with a Ckeditor // instance, using default Configuration. CKEDITOR.replace( 'Editor3' ); </script> </body> </html>
– William De Paula
Hello William De Paula, I believe it is some incompatibility with another library because I posted on my server your html (see the source code) and it is working nicely, you can check http://kithomepage.com/sos/Problemas-com-Ckeditor.htm
– user60252
You’re not posting this html and script in a single line, right? What other libraries do you use on your page?
– user60252