How to put HTML editor in a HTML file through JavaScript?
HTML editor using JavaScript
KFish
6:36 am on Jun 24, 2008 (gmt 0)
I have a client who wants his visitors to leave a message on his site. This far ok. But the problem is he wants me to put an HTML editor inserted into the page so that the visitors can actually format the text and then submit – just like popular emails allow like Yahoo, Gmail etc.
Is it possible through JavaScript? If yes where can I get the code?
salnajjar
9:22 am on Jun 26, 2008 (gmt 0)
The easiest way if you want something quick is to look at the FCKEditor... (http://www.fckeditor.net) It's free and supports nearly every type of server technology. You simply replace a form text box with it and edit the config file for your requirements.
That being said, you'll still need to have the backend logic in place to process the submitted comments, display them etc.