Hi,
I'm working as a freelancing web developer and I'm checking CKeditor out to se if It might be a gould solution for letting my customers edit their websites by their own.
But now I have ran into a problem. Sometimes the CKeditor just won't load up when I enter the page. Instead all that's shown is the plain text area. But then, maybe a couple of hours later, it might just be working again.
Has anybody had the same problem? And does anybody know a possible solution for this?
I've placed the ckeditor folder in the root folder of my website. Then I'm calling the .js file with
And this is the code I'm using for the textarea and to load the CKeditor:
I'm working as a freelancing web developer and I'm checking CKeditor out to se if It might be a gould solution for letting my customers edit their websites by their own.
But now I have ran into a problem. Sometimes the CKeditor just won't load up when I enter the page. Instead all that's shown is the plain text area. But then, maybe a couple of hours later, it might just be working again.
Has anybody had the same problem? And does anybody know a possible solution for this?
I've placed the ckeditor folder in the root folder of my website. Then I'm calling the .js file with
<script type="text/javascript" src="../ckeditor/ckeditor.js"></script>in the <head> section of the page.
And this is the code I'm using for the textarea and to load the CKeditor:
<form method="post" action="submit.php"> <textarea id="index" name="index"></textarea> <script type="text/javascript"> CKEDITOR.replace( 'index', { removePlugins : 'resize', language : 'sv' }); </script> <input type="submit" value="Spara" /><input type="button" value="Tillbaka" onclick="selection()" /> </p> </form>