Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using ckeditor and I have a problem. The problem is this, I have to open a table dialog to create some table into my ckeditor textarea. In the ckeditor, we can use this code :

items : [ 'Table' ]

But I made a button and script outside the editor. like this :

<script>
function somefunction() {
CKEDITOR.instances['editor1'].openDialog('table');
}
</script>
<button onclick="somefunction();">click</button>

When I click the button, I can open the table dialog. But there is a error message. The message is "null is null or not an object". How can I modify the script code to delete the message? Please help me...

share|improve this question
What happens if you take the parenthasis () off the onclick handler? – Jamie Dixon Jul 19 '11 at 20:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.