Tagged Questions

2
votes
2answers
98 views

What's the best method for creating a simple Rich-Text WYSIWYG editor?

I need to create a simple rich-text editor that saves its contents to an XML file using arbitrary markup to indicate special text styles (e.g: [b]...[/b] for bold and [i]...[/i] for italic). All the ...
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 ...
2
votes
1answer
483 views

How to alternate moveStart in Firefox?

Does anybody know how to use range.setStart in the same way as range.moveStart works in IE? I'd like to implement backspace/delete in JS, something like this: range.moveStart('character',-1); ...
2
votes
4answers
1k views

firefox/IE designMode reference needed

I am looking for reference documentation for designMode in Firefox 2/3 and IE 6/7/8. Does anyone have links to good references?
1
vote
2answers
151 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
1answer
645 views

Combining designMode on/off bookmarklets into one toggling bookmarklet

I'm looking to combine these 2 bookmarklets into 1 bookmarklet that toggles the designMode on and off: On: javascript:document.body.contentEditable='true';%20document.designMode='on';%20void%200 ...
1
vote
1answer
187 views

Can i execute custom commands in a rich text editor (iframe with design mode on)?

See this. Is it possible to create custom commands (and how) for the function execCommands? I need custom commands for custom markup.
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
0answers
14 views

How to bold several parts of a string in a iframe set to design mode?

I have a list containing start and end boundaries: var boundaries = [[3, 6], [7, 18], [43, 44]] And a string in a iframe with design mode set to on. I want to be able to bold parts of the string, ...
0
votes
1answer
69 views

designMode iFrame Get Cursor Position

I want to get the cursor position of an editable iFrame (using designMode). Here is the code I have so far: document.getElementById('iframe_id').contentWindow.document.getSelection().getRangeAt(0) ...
0
votes
1answer
52 views

Inserting Text into a Designmode Iframe Triggered By a Button Outside the Iframe

I have an editable iframe and I would like to insert text at the cursor location when the user clicks a button that is outside the iframe. I am trying to use the following code to insert the text: ...
0
votes
1answer
26 views

RichText editor button state on insertion point location

I've created a mini browser RichText editor that implements basic stuff like bold, italic, underline, indent among others. Say I have these on my textarea (which is really an iframe): This is a bold ...
0
votes
1answer
41 views

Embed and object tags not showing with designMode=on

I'm currently using Firefox 7.0.1. I've been working on a WYSIWYG editor and just recently discovered an issue with embedding content in editable documents. I'm not sure if this is a bug, but when a ...
0
votes
1answer
103 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
138 views

Javascript: Disable Style Pasting

I'm building a simple WYSIWYG editor with an iframe with Desig Mode On. My problem is that when I paste some text in the editor then it brings the style of the text too like font size, font family, ...
0
votes
2answers
302 views

why window.setTimeout is required to set an iframe's designmode “on” in IE

In my experiment, I have seen that even after window.onload event, window.setTimeout is required to make an iframe editable by setting iframe's designmode "ON". And this happens in IE, while in ...
0
votes
1answer
153 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
233 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
2answers
785 views

HTML designMode, move cursor programmatically using default keypress handlers

Although I already got an answer, I'll start a small bounty on this one. As the answer is that it is impossible, I'm searching for an alternative solution or some other suggestion. I'm making a very ...
0
votes
3answers
527 views

Can't switch on designMode in Internet Explorer

The following code works in Firefox 3.6, but not in Internet Explorer 8: <html> <head> <title>Example</title> <script type="text/javascript"> function init() ...
0
votes
1answer
326 views

Execcommand for iframe don't work

I am making my own WYSIWYG editor. But i can't make any text bold with the execcommand function. I am using the next code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" ...
0
votes
1answer
1k views

Javascript: designMode for iframe doesn't work with FF when in jQuery dialog

here's the sample code (fully working - just copy to an empty html file and it will work): <html> <head> <title></title> <link rel="stylesheet" ...
0
votes
1answer
976 views

Restricting enter keypress event in an IFrame, does not work

I have an IFrame within my page and am using the designMode="on" on this iframe for a small-level rich text editing. My concern is that I need not allow the user to enter new lines in it - meaning, I ...
0
votes
1answer
276 views

Why a pop-up alert can affect “designMode”?

I was expreimenting to build a page editor. One issue just drove me crazy in firefox. The page code is below: <body> <iframe WIDTH=200 HEIGHT=200 id="myEditor"></iframe> ...