On Dec 16, 2:10 pm, Mean Mike <[email protected]> wrote:
> I can't seem to get anything out of the new jquery ckeditor plugin
>
> I can have it load a an editor no problem but I need to do more than
> just that a good starting point would be for me to be able to
> something like
>
> var foo = $.ckeditor.instances['textarea:#fck'].getData();
I haven't used it before, but from the code, it looks as though you
can do this:
alert($.ckeditor.instance("textarea1").getData());
This code looks as though it will get you the underlying CKEditor
object:
$.ckeditor.instance("textarea1")
Worth a try, any way.
-- Scott