JQuery UI WYSIWYG?

Now I am using CLEditor , but I cannot style it like the rest of the page. So is there a jQuery UI WYSIWYG text editor? Or is there a way to style CLEditor with jQuery UI widget elements?

+6
javascript editor jquery-ui jquery-plugins wysiwyg
source share
5 answers

I created RTE for this very reason. I wanted the editor to be lightweight and 100% compatible with themeroller support. My editor uses themeroller for design and uses regular html to create button icons that do not exist (yet) in themeroller.

You will find links to other editors that do not use themeroller icons and therefore are not really 100% jquery ui.

You can see my editor here: https://github.com/gcphost/jUIRTE

+1
source share

The CLEditor user interface can be created using the jquery.cleditor.css file. The internal editor document can also be used with the optional parameters docCSSFile and bodyStyle.

+3
source share

I like CLEditor more than elrte.org , so I had to edit the code. Not the best solution, but the best ...

+2
source share

This is not entirely easy, but CKEditor has a jQuery interface that can be enabled using the adapter js file. I use it in my current project and do not experience pain in the main mode.

0
source share

I'm in love with jQte just 19Kb

$(element).jqte(); // ;) 
0
source share

All Articles