CLEditor- Handy Javascript Wysiwyg editor
Another straight to the point solution

So- CLEditor is just 16 kB in size, it looks nice:

and is very easy to install, just put those in your document's HEAD:
<link rel="stylesheet" type="text/css" href="../jquery.cleditor.css" />
<script type="text/javascript" src="../jquery.cleditor.min.js"></script>
and, of source, ensure you have jQuery linked:<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
Now, somewhere in your document put a textarea, like this:<tex tarea id="input" name="input">Hello world</tex tarea>
and then just convert it into WYSIWYG editor:<script type="text/javascript">
$("#input").cleditor()[0].focus();
</script>
Simple, isn't it?
Comments