Tagged Questions

contentEditable is an HTML attribute (invented by Microsoft and standardized in HTML5) that is used for client-side in-browser "rich text" editing.

learn more… | top users | synonyms

39
votes
5answers
25k views

Set cursor position on contentEditable <div>

I am after a definitive, cross-browser solution to set the cursor/caret position to the last known position when a contentEditable='on' <div> regains focus. It appears default functionality of a ...
18
votes
2answers
2k views

Any WYSIWYG rich text editor that doesn't use HTML (contenteditable or designMode), a la (the new) Google Docs?

Besides the new Google Docs, all the other WYSIWYG web-based rich text editors (ckeditor, tinymce, old Google Docs) I've seen are based on contenteditable or designMode. I personally hate using these ...
18
votes
8answers
8k views

contenteditable change events

I want to run a function when a user edits a contenteditable div. What's the equivalent of an onchange event? Thanks. I'm using jquery so any solutions that uses jquery is preferred. Thanks!
16
votes
6answers
3k views

Force IE contentEditable element to create line breaks on Enter key, without breaking Undo

On Internet Explorer, a contentEditable DIV creates a new paragraph (<p></p>) each time you press Enter whereas Firefox creates a <br/> tag. As discussed here, it is possible to ...
14
votes
4answers
992 views

Browser-based visual editor/designer?

Is there an example of a browser-based and preferably open source visual javascript application designer (using contenteditable or canvas or whatever), perhaps with support for embedded controls and ...
11
votes
9answers
1k views

IE7 contentEditable word wrapping

I have the following code: <html> <style type="text/css"> DIV { display:inline; border: solid red 1px; } .editable { background:yellow; } </style> <div ...
10
votes
4answers
1k views

Extracting text from a contentEditable div

I have a div set to contentEditable and styled with "white-space:pre" so it keeps things like linebreaks. In Safari, FF and IE, the div pretty much looks and works the same. All is well. What I want ...
10
votes
5answers
7k views

jquery Setting cursor position in contenteditable div

The old version of the question is below, after researching more, I decided to rephrase the question. The problem as before is, I need to focus a contenteditable div without highlighting the text, ...
9
votes
4answers
2k views

The State of contenteditable

The State of contenteditable The markup produced by wysiwyg editors is atrocious. Its littered with style attributes and often is not even valid HTML (missing closing tags, overlapping styling, ...
9
votes
6answers
1k views

how to change behavior of contenteditable blocks after on enter pressed in various browsers

When pressing enter in <div contenteditable="true"> </div> in firefox <br /> is produced - that's ok. But in Chrome or IE a new <div> or <p> is created. What should I do ...
9
votes
5answers
4k views

return focus to contenteditable after execCommand?

I have the following code demonstrating contenteditable property and a button that will inject bold text into the paragraph with contenteditable area. My question is how to return focus to where i ...
9
votes
4answers
7k views

How to make a DIV editable cross-browser?

Do you know how to make a DIV editable with JavaScript (cross-browser) ? Something similar to a rich textarea, but that uses an editable iframe. I need something similar for a DIV. I don't want to ...
9
votes
6answers
5k views

Why doesn't @contenteditable work on the iPhone?

Safari HTML Reference: Supported Attributes says: contenteditable If true, the element can be edited on the fly; if false, it cannot. Availability Available in Safari 1.2 and ...
8
votes
3answers
7k views

How to find cursor position in a contenteditable DIV?

I am writing a autocompleter for a content editable DIV (need to render html content in the text box. So preferred to use contenteditable DIV over TEXTAREA). Now I need to find the cursor position ...
7
votes
2answers
283 views

What are the cons of using a contentEditable div rather than a textarea?

Would I be shooting myself in the foot by using a div with attribute contentEditable="true" as a text field rather than a textarea?
7
votes
3answers
593 views

Drag-n-Drop on contentEditable elements

There are numerous WYSIWYG editors available on the internet, but I'm yet to find one that implements some form of drag-n-drop implementation. It is easy to create one's own editor, but I want to the ...
7
votes
3answers
532 views

Tag-like autocompletion and caret/cursor movement in contenteditable elements

I'm working on a jQuery plugin that will allow you to do @username style tags, like Facebook does in their status update input box. My problem is, that even after hours of researching and ...
7
votes
2answers
9k views

Insert text in Javascript contenteditable div

I have a problem where I need to insert a text (string, may or may not have html tags) to a div. It has to be a div and not a textarea. Is there anyway to do that? First of all, I need to get the ...
6
votes
1answer
281 views

contentEditable + selectAll: Firefox won't allow keyboard input on dynamically generated content

I'm having a problem in Firefox (other browsers seem to work fine) with dynamically generated elements containing a contenteditable="true" attribute: If I selectAll (either dynamically, or with my ...
6
votes
3answers
1k views

How can I make a plain text paste in a contentEditable span without breaking undo?

Oddly specific question, but I have a solution already to paste plain text in a <span contentEditable="true"> by using a hidden textarea, which seems to work really well, except that it breaks ...
6
votes
2answers
2k views

Get caret position in contentEditable div

I'm finding tons of good, crossbrowser anwers on how to SET the cursor or caret position in a contentEditable DIV, but none on how to GET or find its position... What I want to do is know the ...
6
votes
3answers
1k views

Limiting Number of Characters in a ContentEditable div

I am using contenteditable div elements in my web application and I am trying to come up with a solution to limit the amount of characters allowed in the area, and once the limit is hit, attempting to ...
6
votes
3answers
1k views

JavaScript 'contenteditable' — Getting/Setting Caret Position

I have read a few posts on positioning the caret, but none seem to answer my particular issue. I have 2 divs (div1 and div2) div1 = noneditable div div2 = contenteditable div both divs contain exact ...
6
votes
2answers
1k views

What's the use of <element contentEditable=“true”> in html?

It seems it allows you to edit the content of an element, but what is actually happening? What's the use of this property? EDIT: see here
6
votes
5answers
6k views

Firefox - designMode: disable image resizing handles

How can I prevent the user from being able to resize an image in designMode? (disable the handles when image is clicked)
5
votes
4answers
262 views

TinyMCE issues with resizable content in IE8

Update: After posting on the TinyMCE forum (something I should have done before offering the bounty) the primary issue may be solved, but I'm still very much open to anything regarding the other ...
5
votes
1answer
113 views

Contenteditable issue

In this: http://jsfiddle.net/bLHVh/4/ I have a contenteditable div, and whenever you type in it, it replaces 'a' with 'b', just as a simple example (it will do useful stuff later, of course). It works ...
5
votes
1answer
166 views

Losing selection when clicking checkbox label

I am trying to get a checkbox with a label to function so that when you have text selected in a contenteditable div, clicking on the label will not lose the selection from the div. The label still ...
5
votes
3answers
1k views

Change cursor position in the contenteditable div after changing innerHTML

I have a simple contenteditable div with some text in it. On onkeyup event i want to replace whole content (innerHTML) of the div based on regex. For example, HTML: some text, more text and $even ...
5
votes
3answers
1k views

Firefox contentEditable div focus issues

I am using contentEditable div tags on my website and I have noticed a weird issue when using Firefox. Here is example source code: <html> <head> </head> <body> ...
5
votes
1answer
3k views

Insert text at cursor in a content editable div

I have a contenteditable div where I need to insert text at the caret position, This can be easily done in IE by document.selection.createRange().text = "banana" Is there a similar way of ...
4
votes
3answers
462 views

contenteditable single-line input

For an application we're developing at the company where I work, we need an input that supports inserting emoticons inside our JS-based web app. We're currently using an input with the emoticon ...
4
votes
2answers
120 views

How to detect when a child-element of a contenteditable DIV is edited via keyboard?

Given this HTML code: <div contenteditable> .... <span> child-element </span> .... </div> When the user clicks on the SPAN element (in order to place the caret ...
4
votes
3answers
698 views

Programatically select text in a contenteditable HTML element?

In JavaScript, it's possible to programmatically select text in an input or textarea element. You can focus an input with ipt.focus(), and then select its contents with ipt.select(). You can even ...
4
votes
1answer
293 views

Customizing Contenteditable behavior with javascript

Currently under firefox when I press return in a contenteditable paragraph it inserts a br tag creates a new paragraph tag and then puts a br tag inside that new paragraph. I would like to modify the ...
4
votes
1answer
394 views

Gracefully Degrading ContentEditable on iPhone & iPad

To my dismay, I found out that the contentEditable=true attribute does not work as expected on iPhones or iPads. Is there a way to gracefully degrade a contentEditable div without resorting to a ...
4
votes
1answer
274 views

jquery contents() returns text node for each character in IE

I am implementing a parser that looks for text nodes matching patterns at the top level of a contenteditable div. My current code: //$this is the jQuery object of the contenteditable div ...
4
votes
1answer
180 views

2 contentEditable containers inside each other; possible bug?

<div contenteditable="true">    <div contenteditable="true">hi</div></div> If you try to edit the inner contentEditable div, which is practically when you ...
4
votes
3answers
2k views

HTML Editor with Java and And webkit - SWT Browser

i want to add WYSIWYG HTML editor to my Java program. my idea is to do Something like this but not with python - with Java. i know about couple of options and their problems : HTMLEditorKit - not ...
4
votes
1answer
250 views

Contenteditable reset text color after foreColor has been used without resetting other styles

Changing the text color of text in a contenteditable div is easy - simply called document.execCommand("foreColor",false,"#FFF") to change text color to white. However, I cannot find a way to reset ...
4
votes
0answers
493 views

HTML / JAVASCRIPT : Disable HTML in contentEditable=true [closed]

Possible Duplicate: HTML / JAVASCRIPT : Disable HTML CONTENT in contentEditable=true I want to know how to disable or control html elements, tags and drag and drop, image resizing and all ...
4
votes
3answers
5k views

workaround for contenteditable on iPad

I have a web application that uses TinyMce to allow rich text editing. Some of my customers are desperate to get it to work on iPad (which doesn't support contenteditable and therefore TinyMce doesn't ...
4
votes
3answers
3k views

ContentEditable DIV - disabling drag and drop

Is it possible to disable the drag-and-drop functionality on elements which have the contentEditable attribute set to true. I have the following HTML page. <!DOCTYPE html> <html><meta ...
4
votes
1answer
749 views

How to edit a link within a contentEditable div

Does anyone have any suggestions on how to edit an link in a contentEditable div? It would be ideal once the link is either clicked with mouse, or the cursor hits the link, that the a small prompt ...
4
votes
4answers
235 views

Define cursor on element

I try to explain my problem. I have a <div contenteditable="true" id="my_editeur>, where I have defined a keypress “event” which allow me to add a ‘p’ when the user clicks on “enter”. It ...
4
votes
1answer
1k views

How do I remove the border around a focused contenteditable pre?

When I set a pre element to contenteditable and put focus in it for editing, it receives a dotted border around it that doesn't look very nice. The border isn't there when focus is somewhere else. How ...
3
votes
1answer
159 views

Any way to highlight current word & sentence in a contentEditable DIV?

I have a contentEditable DIV (building a kind of editor component). I am looking for a way to highlight the current word the user is typing and the sentence that word is on. For example, consider the ...
3
votes
1answer
73 views

How do you move the cursor to the next element in a contenteditable div in Chrome/Safari?

I have logic to insert a tag in a contenteditable div. I want to set the cursor to the start of the following element after the insertion. The code I have to do this is: function ...
3
votes
1answer
46 views

How can I set the text insertion position for a contenteditable div in Mobile Safari?

I'm trying to build a document editing interface for mobile Safari, and I want to base it on a contentEditable <div>. (Yes, I know this is only available on iOS 5. That's not a problem in my ...
3
votes
1answer
180 views

Detect a paste event in a contenteditable

given a content editable div. How can I detect a paste event, prevent the paste from being inserted so can I can intercept and sanitize the paste to include text only? I also don't want to lose focus ...

1 2 3 4 5 8