Answers for "change background color js tinymce"

0

change background color js tinymce

tinyMCE.init(
        mode : "textareas",
        theme : "simple",
        oninit : "postInitWork"
    });

function postInitWork()
{
  var editor = tinymce.get('myEditorid');
  editor.getBody().style.backgroundColor = "#FFFF66";
}
Posted by: Guest on July-25-2021

Code answers related to "change background color js tinymce"

Code answers related to "Javascript"

Browse Popular Code Answers by Language