i want to store data in ckeditor instantly to a file using ajax. I am using cakephp and i have following code in my view file to test whether ckeditor is successfully bound to js event.
<?php
echo $this->Html->script('ckeditor/ckeditor');
echo $this->Form->create('Post', array('action' => 'edit'));
echo $this->Form->input('title',array('id'=>'posttitle'));
echo $this->Form->input('id', array('value'=>$originalid,'type' => 'hidden'));
echo $this->Form->input('username', array('value'=>$creator,'type' => 'hidden'));
echo $this->Form->textarea('body',array('class'=>'ckeditor','id'=>'postbody'));
echo $this->Form->end('Done Editing');
$this->Js->get('#postbody');
echo $this->Js->event('click','alert("hi")');
?>
the problem is that the code works fine when I bind it with input of title but it doesn't work with textarea containing ckeditor.