|
Project Information
Members
Featured
Downloads
Wiki pages
Links
|
Lightweight Rich Text Editor (RTE / WYSIWYG) for jQuery Do you need really lightweight and unbloated Rich Text Editor (RTE / WYSIWYG) for JQuery and ability to extend it as you want? So you at right place. Why yet another "lightweight" RTE editor? The major reason - i couldn't find RTE editor:
I tried to make this Rich Text Editor as simple as possible to be easily changed according your needs. P.S.: Tested with jQuery 1.2.6 and 1.3 Usage: $('.rte').rte({
css: [['default.css']],
controls_rte: rte_toolbar,
controls_html: html_toolbar
});
OR $('.rte').rte({
css: [['default.css']],
base_url: 'http://mysite.com',
frame_class: 'frameBody',
width: 350,
height: 400,
controls_rte: rte_toolbar,
controls_html: html_toolbar
});
Plugin has no any built-in toolbars, so you have to provide it. Lucky, I created one (with almost any feature that you probably will need, include image uploads and file attachments), so you can use it :) Plugin has only RTE/WYSIWYG editor's API, but no any controls/toobars. In that way you can use own specific version of editor for projects. Check Wiki for documentation and API. |