Your question would actually be better asked on the CK/FCK editor forums as
its actually related to that project in specific.  Though, I have a current
project that does exactly this.  Here is the code I use to pull the values
from my CK editors.

function getEditorContents(ename){
  if(CKEDITOR.instances[ename]) return CKEDITOR.instances[ename].getData();
  else{
    var e = document.getElementById(ename);
    if(e) return e.value;
    else return false;
  }
}

 - Jeremy

PS: CKEditor is the next generation of FCK similar options exist for FCK but
CK is just that much better :)

On Thu, Aug 20, 2009 at 9:26 PM, Richard D. Worth <[email protected]> wrote:

> See http://rdworth.org/blog/2008/10/jquery-plugins-and-jquery-ui/ for
> differences between jQuery and jQuery UI. If your question is related to
> jQuery, not jQuery UI, it should be asked on the main jQuery list:
> http://groups.google.com/group/jquery-en
>
> - Richard
>
> On Thu, Aug 20, 2009 at 2:10 PM, Topflysecurity 
> <[email protected]>wrote:
>
>>
>> well i would like to do this with jquery so both kinda.
>>
>> On 20 Aug, 16:39, Jörn Zaefferer <[email protected]>
>> wrote:
>> > Is this really a jQuery UI problem? Or is the problem just to get the
>> > fckeditor value?
>> >
>> > Jörn
>> >
>> > On Thu, Aug 20, 2009 at 3:24 PM, Topflysecurity<[email protected]>
>> wrote:
>> >
>> > > hi. i am using asp.net.
>> >
>> > > i am trying to do a dialog with the values from a fcdeditor. i got all
>> > > done and it is working great while i use a textbox but when i change
>> > > to the fckeditor it just wont get now value from it. anybody familiar
>> > > with how to get values from fckeditor with jquery?
>> >
>> > > thx for checking
>>
>>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to