wysiwyg.js

Examples:

$.wysiwyg(): Toolbar on top and on selection, smiley+fontname+fontsize plugin:
$.wysiwyg(): Toolbar on bottom, no selection-toolbar, custom buttons and smiley plugin:
$.wysiwyg(): Toolbar on selection, hijack right-click, smiley plugin:
bold | red background | set html | insert html
Raw wysiwyg.js-editor (no jQuery, no CSS):
Lorem ipsum dolor sit amet, consectetur adipisici elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquid ex ea commodi consequat. Quis aute iure reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint obcaecat cupiditat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

API:


// create wysiwyg:

var wysiwygeditor = wysiwyg({

    element: document.getElmentById('editor-id'),

    onkeypress: function( code, character, shiftKey, altKey, ctrlKey, metaKey ) {

        },

    onselection: function( collapsed, rect, nodes, rightclick ) {

        },

    onplaceholder: function( visible ) {

        },

    hijackcontextmenu: false

});



// properties:

wysiwygeditor.getElement();

wysiwygeditor.getHTML(); -> 'html'

wysiwygeditor.setHTML( html );

wysiwygeditor.getSelectedHTML(); -> 'html'|false



// selection and popup:

wysiwygeditor.collapseSelection();

wysiwygeditor.openPopup(); -> popup-handle

wysiwygeditor.closePopup();



// exec commands:

wysiwygeditor.removeFormat();

wysiwygeditor.bold();

wysiwygeditor.italic();

wysiwygeditor.underline();

wysiwygeditor.strikethrough();

wysiwygeditor.forecolor( color );

wysiwygeditor.highlight( color );

wysiwygeditor.fontName( fontname );

wysiwygeditor.fontSize( fontsize );

wysiwygeditor.subscript();

wysiwygeditor.superscript();

wysiwygeditor.align( 'left'|'center'|'right'|'justify' );

wysiwygeditor.format( tagname );

wysiwygeditor.indent( outdent );

wysiwygeditor.insertLink( url );

wysiwygeditor.insertImage( url );

wysiwygeditor.insertHTML( html );

wysiwygeditor.insertList( ordered );