jQuery TinyMCE Plugin
Summary
A plugin for embedding TinyMCE via unobtrusive jQuery.Author
Chad Smith (email)Requires
Download
jquery-tinymce.js (804 bytes)License
Dual licensed under the MIT and GPL licenses.Usage
Add TinyMCE to textareas or an element using:$('textarea').tinymce();
Or specify plugins and themes too:
$('.advanced').tinymce({theme:'advanced',plugins:'contextmenu,save,print'});
Toggle one or many TinyMCE instances using:
$('.editors').tinymce('toggle');
Or remove instances entirely using:
$('.editors').tinymce('remove');
You can swap an active editor's skin too:
$('.simple').tinymce({theme:'advanced',plugins:'contextmenu,save,print'});