Tinymce Editor Basic Configuration

  • Download the Tinymce Editor in your Project Folder
  • In order to initialize the TinyMCE the following code must be placed within HEAD element of a document. The following example is configured to convert all TEXTAREA elements into editors when the page loads. There are other modes as well.
  • <html>
    <head>
    <script language="javascript" type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>
    <script language="javascript" type="text/javascript">
    tinyMCE.init({
            theme : "advanced",
            mode : "textareas"
    });
    </script>
    </head>
  • Enjoy the Editor in your textareas