Search code examples
javascriptjquerywysihtml5

how to hide wysihtml5 editor?


I need to hide and show the editor based on event.

I initiate the editor. then, i try to hide using the code:

$('#textare').hide();

but it doesn't work, since it as I think initiate iframe

so how can I show and hide editor

Update: I'm sorry forget to add editor name.. I use wysihtml5. I think the way that editor work is hide the textarea and make iframe so the above text couldent hide the editor.


Solution

  • The textarea should already be hidden since it will only be used as a fallback. The editor itself is contained in an iframe with class wysihtml5-sandbox. So this should toggle the editor

    $(".wysihtml5-sandbox").hide()