How to disable the Tinymce Browser in Selected Textarea

  • Please First read the Documentation of TInymce Editor Carefully Because The documentation of tinmce editor is the best one.
  • If you haven’t read about the general configuration , Click here
  • If you haven’t read about setting height and width , Click here
  • Ok, Lets come to the point i.e Displaying the tinymce editor in the desired textareas.
  • Here is the Setting
  • tinyMCE.init({
    // General options
    mode : “specific_textareas”,
    editor_selector : “texteditor”,
    mode:”textareas”,
    theme : “advanced”,
    editor_deselector : “noeditor”,
    width : 700,
    height : 400,
  • How to Use, Here is the Code if you want to Exclude the Tinymce Browser in the Textarea,
  • <textarea class=”noeditor” name=”some_name”></textarea>
  • If you want to Include the Tinymce Editor  Here is the Sample,
  • <textarea name=”some_name” class=”texteditor”></textarea>
  • Hope you enjoyed …..
  • Related Website   Click Here or Click Here