How to programmatically get content from the editor WYSIHTML5? Suppose the editor is created like this:
var editor = new wysihtml5.Editor
(
$(this.el).find('textarea').get(0),
{
toolbar: "toolbar",
parserRules: wysihtml5ParserRules
}
);
I would like to get editor content for the event blur
editor.on
(
"blur",
function()
{
}
);
Dalen source
share