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');
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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',{});