Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Programmatically retrieve content from WYSIHTML5 editor

How do I programmatically retrieve content from a WYSIHTML5 editor? Suppose the editor is instantiated as this:

var editor = new wysihtml5.Editor
(
   $(this.el).find('textarea').get(0),
   {
      toolbar:      "toolbar",
      parserRules:  wysihtml5ParserRules
   }
);

i would like to get the editor's content on blur event

editor.on
(
   "blur",
   function()
   {
      //what here?
   }
);
like image 564
Dalen Avatar asked Jun 11 '12 19:06

Dalen


2 Answers

It's much better to use the API editor.getValue()

(@dalen mentioned this in the comment above)

like image 143
p3drosola Avatar answered Oct 16 '22 21:10

p3drosola


Here is how (using jQuery here):

$('iframe').contents().find('.wysihtml5-editor').html();

To find text instead, use text() instead of html().

FYI:

  • I jQuerified this demo page of it using jQueryify bookmarklet
  • Entered some text in editor
  • typed above code at console and output was entered text

In your application, you won't need the jQueryify bookmarklet, I used it to inject jQuery on that demo page so that I could use it to get the value of editor.


Having said that, there normally should be some built-in method in that editor to get current value you should look at the docs :)

like image 43
Sarfraz Avatar answered Oct 16 '22 20:10

Sarfraz