Configuration reference

This document is the index/reference page for all available core configuration options in TinyMCE.

Configuration options

All configuration options below is to be placed within the init JavaScript call.


Initialization of TinyMCE

Inorder to initialize the TinyMCE the following code must be placed within HEAD element of a document. The following example is configurated to convert all TEXTAREA elements to into editors when the page loads, there are other modes as well.

Example of TinyMCE configuration:

<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>
Note: Remember to remove the last "," character in the options list.