Tagged Questions
2
votes
2answers
502 views
Alternatives to execCommand
I'm looking to create a WYSIWYG editor, using jQuery as a framework from which I can use different methods to ease production.
I do actually have a working editor at the moment, and it's working ...
1
vote
2answers
143 views
Set focus on iframe in Chrome
I have an iframe (id: 'chat') with designMode='on' in Chrome.
On Enter keypress event I call the function send(), which takes the iframe contents and writes it to a socket. My problem is that when ...
1
vote
3answers
1k views
IE designMode Showing display:none Divs
I've done a lot of research on this,but I'm unable to solve this problem. I've got a Div with several Divs within it that I want to hide before switching on a TinyMCE instance.
I'm doing this via ...
0
votes
1answer
101 views
designMode and custom actions?
So my newest project requires the use of designMode (or similar methods of creating rich text editors), but I am having difficulty using the default commands. I would much rather insert my own HTML at ...
0
votes
0answers
38 views
WYSIWYG editor, determine if moving inside or leaving containers
I'm in the middle of creating a custom richtext/WYSIWYG editor (I know, there are a lot of great alternatives out there, I'm not interested in those), but there are some :P hurdles I'm facing. Here is ...
0
votes
1answer
152 views
Is designMode bad?
In a previous post that I posted here, I got responses that contentEditable and designMode are bad practices. So I switched to TinyMCE, but that uses designMode as well... is there something bad about ...
0
votes
2answers
231 views
Can't get value of designMode IFRAME
I can't retrieve the contents of an iframe, when designmode = 'on'. Here is my code:
val = $("#frame").val();
I've tried everything, and nothing works, help?
0
votes
1answer
691 views
Html rich text editor and read-only content?
I'm looking for a way to make specific elements in a Html rich text editor read-only and not possible to modify by the user. Is there any way to achieve this behavior?
An example of the rich text ...