views:

44

answers:

2

At present I am using widgEditor

It is a good library in JavaScript but has some minor issues. Is there any other library that can convert a Rich Text into an HTML equivalent?

+2  A: 

If it's a WYSISYG editor you're after; I've been using CKEditor for a while. It's packed with features but still very speedy. I recommend you to check it out.

Most information you need regarding setting it up is found on their Developer's Guide. However, you basically just need to extract it to the root (configurable) of your website, include the ckeditor.js file inside your head element and then "replace" your regular textarea element using the replace() function, preferably just after the DOM has been loaded, like so:

window.onload = function() {
  CKEDITOR.replace("textarea1");
};
Eric Lennartsson
I saw samples but still it is not working. Can you please illustrate how to use it with TextArea?
RPK
A: 

I found a better library. Just want to share for other members.

http://www.openwebware.com/

It is working fine for me and is simple to use.

RPK