Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
75
Disable the HtmlEditor
posted

Hello,

how can i disable the complete component of htmleditor?

Using the normal jQuery methods for disabling the editor showed no effect.

Parents
  • 24671
    Suggested Answer
    posted

    hey,

    Since the HTML Editor uses contenteditable="true", you can completely disable editing in the following way:

    $("#htmlEditor").find("iframe").contents().find("body").attr("contenteditable", "false")

    where "htmlEditor" is the ID of your element.

    Let me know if this helps. Thanks,

    Angel

Reply Children