Turn text fields into powerful word like (wysiwyg) editor

Posted in » Scripts - by Ades on September 16th, 2008

New to this blog? See our Popular Posts section to get started, we have tons of great articles that can benefit you. Don't miss the upcoming interesting articles, subscribe to our RSS.


openwysiwyg.png

openwysiwyg2.pngThis tool is very useful for web-application developers. With this tool you can turn any textbox (text field) into a full fledged Microsoft Word-like editor (see screenshot to the right).

Adding this javascript to textboxes is quite simple, it’s done in the following way:

<script language="javascript1.2">
WYSIWYG.attach(’feedback’);
</script>

First you call the javascript, then attach it to the textarea called “feedback”. You can see the result of this here. This is particularly useful if your web application has a need for text editing, like newsletter script for example.

It’s like TinyMCE but easier to integrate.

Website: www.openwebware.com

Related Posts
  • No related posts




One Response to “Turn text fields into powerful word like (wysiwyg) editor”

  1. By Anthony on Sep 17, 2008

    Thanks for yet another great tip!


Post a Comment