jwysiwyg call a toolbar click programmatically

147 Views Asked by At

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');
1

There are 1 best solutions below

3
Paul Rumkin On BEST ANSWER

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',{});