My problem is that ckeditor doesn't appear, the page just shows an empty text area. But that's not the thing, my page uses a jquery ajax get request to load the page content into a div, and with all this process ckeditor doesn't appear, but if I load the cntent directly form its source code ckeditor appears prefectly. I'll leave the code here:
index.php
<head> <title>Wikihelp</title> <script type="text/javascript" src="ckeditor/ckeditor.js"></script> <script src="ckeditor/_samples/sample.js" type="text/javascript"></script> <link href="ckeditor/_samples/sample.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="javascript.js"> </script> <script type="text/javascript" src="/ckeditor/ckeditor.js"></script> <script type="text/javascript" src="/ckeditor/adapters/jquery.js"></script> <script type="text/javascript" src="jquery.js"> </script> .... <div id="main_div" align="left" valign="top" width="100%"></div>