I've tried many different Google searches but I haven't been able to find a current tutorial (newer than 2006) on how to actually create a WYSIWYG editor. I realize there are many already, but I'm curious as to how they actually work. I've looked over some of the source code, but it's a lot to digest. I was wonderring if someone could describe essentially how they work? That is, it seems formatted text can't bee placed in a textarea box, and yet they give the illusion of doing just that - how?
|
Javascript WYSIWYG editors do not use a textarea (at least not externally, it is likely that behind the scenes there is a textarea that is populated with the code that makes up the WYSIWYG content so that it can be posted in a form). Rather, there are two properties that are used to make an editable area in a webpage: Once a document (in terms of rich text editors this generally means embedding an iframe with designMode set into your page) or element is made editable, formatting is done by using the In order to pass content from the editable element to the server, generally the Resources: |
|||||||||
|
|
Basically they hide your textarea and place an iframe as an editor field. They capture your input (text + formating) and write the corresponding HTML into the iframe. If you submit your form including the original textarea they copy the content of the iframe into the textarea and therefore the html code gets submitted. |
|||
|
|
|
I have a good idea take this code to make a cool WYSIWYG editor- To make a nice editor I have made a code with JavaScript that will open a new window containing the result- Let's start with the Body-
Now we continue with the JavaScript-
Let's see the code on-whole:-
If i can help you in any way i am very happy doing that. Thank you for asking this question and for increasing my curiosity towards JavaScript. |
|||
|
|