Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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";
}
Source by askcodez.com #
 
PREVIOUS NEXT
Tagged: #change #background #color #js #tinymce
ADD COMMENT
Topic
Name
1+7 =