Hi there.
I am using CKeditor for a content management system I am developing.
I have a facility where users can edit their articles from the frontend.
To do this they click the "edit" on their article and then a ajax loads a file (the file that will let the user change the article). The problem is the editor doesn't load with the file. The script allows me to include JS and CSS files but it still (and the js files are included according to filebug) but it won't change the textarea still
Here is a link for the ajax include script I am using:
http://www.dynamicdrive.com/dynamicinde ... ontent.htm
Here is my code that loads the file:
<a href="javascript:ajaxpage(rootdomain+'/yourcms/FEeditor.php?type=article&id=1', 'div_id'); loadobjs('admincp/editor/ckeditor/plugins/ckfinder/ckfinder.js', 'admincp/editor/ckeditor/ckeditor.js', 'templates/<?php echo $row_disp['current_template']; ?>/css/FEeditor.css')">Edit</a>
Re: Using ckeditor 3.5 with dynamically loaded page