Page 1 of 1

FCK editor more instances

Posted: Thu Aug 26, 2010 3:09 am
by deshmukh999
Hi,

I downloaded fck editor editor,

But i am getting trouble when i going to create more than one instance of fck editor in one html page.
If any oen knows, Please suggest me how to do it?

Re: FCK editor more instances

Posted: Thu Aug 26, 2010 4:49 am
by pbs
In below given code, give different names, it is the textarea name

Code: Select all


$oFCKeditor = new FCKeditor('description') ; // first instance

$oFCKeditor = new FCKeditor('description1') ; // second  instance


Re: FCK editor more instances

Posted: Thu Aug 26, 2010 5:33 am
by deshmukh999
Thank you for your great help.