Search code examples
javascriptjquerywysiwygjwysiwyg

jwysiwyg call a toolbar click programmatically


I am using jwysiwyg and I would like to be able to click some of the toolbar buttons such as bold, italic, etc programmatically. Is this possible?

Basically, I want something like this:

$('#editor').wysiwyg('click', 'bold');

Solution

  • Try $('#editor .toolbar .bold').click(). It's not the Jedi way, but it works correctly.

    UPD

    After fast looking at wysiwyg sources I think that it's only correct way to do it.

    UPD

    And the right answer is $('#editor-textarea').data('wysiwyg').triggerControl('bold',{});