I am writing my own WYSIWYG html editor based on jquery. In order to achieve this goal, I am exploring jWYSIWYG. I've figured out that I need usual html container(e.g div) in order to show formatted text.And I need to bind all events(keydown, mouseclick) for applying changes on this container. There is another problem: How to show blink text cursor. I can't realized how this implemented in jWYSIWYG. There is a simple iframe with html document. How they show blink text cursor???
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
look at
http://www.dynamicdrive.com/forums/showthread.php?p=74576#post74576 There are many similar questions here: How to make a div with a blinking cursor and editable text without using <input> ? |
|||
|
|
contentEditableprobably has an incredibly complicated set of quirks that need to be worked around. The editor I have written has over 3000 lines of code, and most of that is correcting browser quirks. It doesn't even have list or table support. – Nico Burns Jul 29 '11 at 13:59