This is what you are looking for: http://jsfiddle.net/QjBh4/
Hope this fits your needs :))
PS - Please feel free to use my demo version and create your own problem, I will try to help you if I miss something!
Script source et. and etc.
<link rel="stylesheet" type="text/css" href="http://akzhan.github.com/jwysiwyg/help/lib/blueprint/screen.css" media="screen, projection" /> <link rel="stylesheet" type="text/css" href="http://akzhan.github.com/jwysiwyg/help/lib/blueprint/print.css" media="print" /> <link rel="stylesheet" href="http://akzhan.github.com/jwysiwyg/jquery.wysiwyg.css" type="text/css"/> <script type="text/javascript" src="http://akzhan.github.com/jwysiwyg/jquery.wysiwyg.js"></script> <script type="text/javascript" src="http://akzhan.github.com/jwysiwyg/controls/wysiwyg.image.js"></script>
Code example
(function($) { $(document).ready(function() { $('textarea').each(function() { value_of_textarea = this.value; $(this).wysiwyg({ autoGrow: true, initialContent: function() { return value_of_textarea; }, controls: "bold,italic,underline,|,undo,redo" }); }); }); })(jQuery);β
source share