Log in or register to post comments
Editor not loading text from table onclick
I have two ways of launching the same CKeditor on a page one

<a href="javascript: editor();" >text</a>
and the other

<td onclick="javascript: editor();">

But for some reason the editor is not picking up the text from the div "text" when clicking the table based link.

function editor()
{

textEditor=CKEDITOR.replace( 'text',
{

toolbar : 'Basic'
});
}