contentEditable is an HTML attribute (invented by Microsoft and standardized in HTML5) that is used for client-side in-browser "rich text" editing.
0
votes
0answers
25 views
HTML5 Rich Text Editor
This is in many ways a follow up from my previous question - Content Editable HTML Editor. I ran into this a few minutes ago - wysihtml5 – A rich text editor based on HTML5. It sounds very ...
0
votes
0answers
20 views
Js/jquery: clean contenteditable copy-paste, same look as if manually copied to textarea
I want to clean the copy-paste contents before they are copy-pasted into my contenteditable div.
I want the text to look the same as if it had been manually copied into a text area. That means ...
1
vote
1answer
44 views
Insert text at caret in contenteditable div
I am using the following function to insert text where the cursor is:
Live JSFIDDLE
function pasteHtmlAtCaret(html) {
var sel, range;
if (window.getSelection) {
// IE9 and non-IE
...
1
vote
1answer
31 views
JavaScript contenteditable
I am creating a HTML rich text editor and I would like to use the contenteditable attribute on a div. I have a list of divs inside a div called editor. When the user hits enter I prevent the default ...
0
votes
1answer
16 views
Edit contenteditable text with Ctrl-A (Select All) removing all child elements
In a div with contenteditable="true", if I select all text using Ctrl-A and then type something, it will removing all the child elements within the div, not just the text.
for example:
<div ...
0
votes
3answers
19 views
How do I get the content of the div on a key press so that it also includes the text which was entered on that keypress?
I have a contenteditable div and the user can enter or modify the text in it.I want to display the text in another div
html code:
<div contenteditable="true" id ="a1">
</div>
...
0
votes
1answer
11 views
CKEditor insertHTML() in Inline mode
any way to use che InsertHTML CKeditor API to add HTML elements to a div using the inline mode?
I'm trying to solve e huge problem: I want to use the editor to design a page with some templates. If I ...
0
votes
1answer
48 views
Respect HTML tags inside an editable DIV
i'm trying to realize a very simple kind of wysiwyg javascript editor.
What i have:
I know, the current Javascript doesn't work by hitting the button…
wrapText = function(replacementText) {
...
1
vote
0answers
55 views
Get x, y position of selection relative to a contenteditable div
I have a contenteditable div and I need to get the x and y position in pixels of the current selection (i.e. of the caret). What I have now is a method which gets the selection relative to the window ...
0
votes
1answer
44 views
Boolean on empty contenteditable element evaluates to true
I have some contenteditable divs which have the following function:
$(".myDiv").on('blur', function() {
if ($(this).text()) {
// Do something
} else { // i.e. $(this) is ...
0
votes
0answers
27 views
Set Cursor Position to end of text in contenteditable div
I have two issues in following scinario:
<div id="test" contenteditable="true">
<font face="arial"> this test text </font>
</div>
When i replace the text of font tag by ...
0
votes
0answers
23 views
Rangy - replace selection span with another span
I'm using rangy library to add style to text in contenteditable, wrapping text inside span.
I want to be able to change style to a selection that already has a style, basically I have a selection ...
0
votes
0answers
24 views
Why does a span of 'display: none' prevent deletion of a preceding, 'contententeditable = false' span?
This behaviour is specific to Chrome (at time of writing version 26.0.1410.64 m but I know it's been happening for a while).
Take the following HTML:
<div contenteditable="true">
<div ...
0
votes
0answers
37 views
How to specifically set the caret position in a contenteditable div
I need to set the caret position in a contenteditable div in Chrome which is not focused but I know the caret position i.e. the character index in the HTML of the div. The div may have other elements ...
0
votes
1answer
54 views
Change return key (returnKeyType) on a contenteditable div in UIWebView
I would like to have a different returnKeyType on my keyboard when editing a contenteditable div in a UIWebView on iOS.
I tried putting the contenteditable div inside a form and assigning it a ...
-2
votes
0answers
23 views
set focus on specific <br> tag in html5 [closed]
I created an editor where I need to implement go to line feature. SAy user inputs 5, for going to line number 5. How to focus on line number 5? I used contenteditable div. Please help me out.
2
votes
4answers
202 views
Wrap markdown in appropriate HTML with JavaScript
I've got a content-editable <div>.
When a correct markdown syntax is entered into the div, I need it to add the correct HTML around the outside, but preserve the markdown characters within. For ...
0
votes
0answers
55 views
Stripping formatting from ContentEditable paste - problems ending newline in Webkit
I have the following code to strip the formatting from pasted text in the contenteditable paragraphs:
$(document).on('paste', 'div[contenteditable="true"]', function(e) {
div = $(this);
...
0
votes
2answers
58 views
How to input characters at the caret in a contenteditable?
How do I input a character, with either JQuery or plain JavaScript, as if it had been typed?
I have a contenteditable section, and am intercepting user input in order to replace certain characters ...
1
vote
2answers
76 views
jquery.html() interpret html entities
I'm dealing with a rich text editor, but when I try to insert hmtl entities in my "contenteditable" div using jQuery.html() these entities get interpreted.
If I do:
<textarea><b>Hey, ...
0
votes
1answer
41 views
XY Caret Coordinates inside a contenteditable div
I am looking for a way to get the caret x y coordinates inside a contenteditable div, in a similar manner to how you can get the mouse coordinates using window.event since I need to open a pop-up ...
1
vote
0answers
66 views
iOS UIWebView contenteditable autocorrect
Currently it appears that setting autocorrect and autocomplete on a contenteditable div in mobile Safari is having no effect. Is there any way around this? Is it possible to set autocorrectionType on ...
7
votes
2answers
178 views
How to make HTML table “Excel-like” editable for multiple cells, i.e. simultaneous copy-paste features?
I need my HTML table to be editable so that user inserted data could be sent to the server. However due to the table's size (50 rows) it would not be convenient for users to insert data points one-by ...
0
votes
2answers
38 views
How to use preventDefault in contenteditable divs?
This is an example on CodePen.
Here's the code anyway:
HTML:
<div contenteditable="true" id="mydiv"></div>
jQuery:
$(function () {
$("#mydiv").keydown(function (evt) {
if ...
0
votes
1answer
96 views
Is there a way to make a non-editable span?
I am using a content editable div as an editor for real-time collaboration purposes. I need to paint carets/cursors for each user on the client side. I am doing this by adding and removing a span on ...
0
votes
1answer
62 views
Delete content of contenteditable div, add strange font element
I have a problem with a contenteditable div.
The div start with a span with a style, but when i delete content and write appear a new element font, with same font but with size converted, 24 to 5.
...
0
votes
1answer
29 views
Imitate a password-type input while using a contenteditable div
I'm using contenteditable divs instead of input elements, because they are more flexible when it comes to styling within the input box. I'm just wondering if there's a way to make the input look like ...
0
votes
1answer
60 views
Knockout, contenteditable (and markdown)
Working on a Knockout bindinghandler that is backed by a markdown string, and renders (using markdown.js and the built-in 'html' bindinghandler).
Works fine, but tried to add contenteditable ...
2
votes
1answer
66 views
contenteditable divs has a weird behaviour on focus in Opera
I decided to use div with contenteditable instead of input. Here is a code, it's simple <div contenteditable="true"></div> So, and look at jsfiddle: http://jsfiddle.net/QkfKk/
Just for ...
0
votes
1answer
34 views
Get the overflowing content of a contenteditable div
I have a contenteditable div, which I don't want to exceed, say 200px in height. Now if the user is just typing into the div, I can constantly monitor his activities (in particular, the current height ...
1
vote
0answers
113 views
How to get the caret's position in contentEditable div when entering a new line?
I am making a rich text editor with UIWebview, which uses a contentEditable div. I want to get the caret's position in pixels. I have searched a lot, and I got the code below.
function ...
1
vote
1answer
54 views
Consolidate stacked DOM formatting elements - contenteditable DIV
I have a contenteditable DIV which is linked/synced-back to a textarea.
The contenteditable DIV is a free-for-all sandbox which will create formatting elements etc as they are being invoked. ...
0
votes
2answers
103 views
Unable to get document.execCommand('undo') working in the same manner across browsers
I have some code implementing a context menu on a textbox, the context menu is to have an Undo and Redo item that calls the browsers native methods by using document.execCommand('undo').
This code ...
0
votes
0answers
33 views
How to maintain caret after CKEditor 4 activates (inline editing)?
I'm using CKEditor 4 (inline editing), enabling editing by code, by calling CKEDITOR.inline() on a div injected using Ajax.
The editor takes a while to activate, but the main problem is that once it ...
2
votes
1answer
47 views
contenteditable removeFormat on images
I am trying to sync a contenteditable DIV with a textarea which is part of form.
I am pulling the innerHTML from the DIV but I would like to be able to remove nested formatting from the img tags ...
4
votes
1answer
90 views
Traversing contenteditable paragraphs with arrow keys
I'm try to traverse between contenteditable paragraphs using the arrow keys. I can't put a containing div around all paragraphs as the may be divided by other non-editable elements.
I need to be able ...
0
votes
1answer
33 views
opening hallo editor on document ready
I'm trying to open the hallo editor toolbar on document.ready with focus on the first element or anywhere, it doesn't really matter I just need to open it
I tried triggering a click event on the ...
-1
votes
0answers
32 views
Editing text files in an HTML page
I have developed an online tool where files are listed on the left and onclicking the files,it should open up on the right hand side and the file should be editable.
I have found that using ...
0
votes
1answer
38 views
Unable to remove an element inside n editable div using backspace - Jquery
I got this html
<div contenteditable="true"> Hey <a class="tgt" contenteditable="false">harry</a> great </div>
When in firefox I am unable to remove the a.tgt using ...
0
votes
0answers
52 views
Move caret on contentEditable div using javascript
I've been searching a lot but i couldn't figure out how to move the text cursor in a contentEditable div,the problem is that i don't have much knowledge in javascript and the best working code i found ...
0
votes
2answers
80 views
CKEDITOR.inline first load
CKEDITOR is giving me some hard time with the first load, i use:
CKEDITOR.inline
on the first load it takes about 2 seconds to load, on these two seconds if the user edit the div's content, when ...
0
votes
2answers
110 views
Javascript Contenteditable - set Cursor / Caret to index
How would I go a about modifying this(How to set caret(cursor) position in contenteditable element (div)?) so it accepts a number index and element and sets the cursor position to that index?
For ...
0
votes
2answers
108 views
Contenteditable / jQuery / Javascript - Select text from cursor / caret to end of paragraph
I'm trying make a new paragraph when the enter key is pressed. I can do that and it works well. But now say the cursor is the middle of a paragraph - when enter is pressed I'm trying to select a range ...
1
vote
1answer
113 views
Content Editable Text Editors
I have tried out several HTML editors including TinyMCE, CKEditor and now NicEdit. NicEdit is good in one respect - it is very easy to customize. However, I have found that they all have a tendency ...
1
vote
1answer
61 views
jQuery / Contenteditable - new paragraph on keypress works on original but not generated content
I have some contenteditable paragraphs and have written up some jquery to generate a new paragraph when the enter key is pressed.
$('p[contenteditable="true"]').keypress(function(e) {
if(e.which ...
0
votes
0answers
20 views
When content is empty, caret disappear in contenteditable
When div[contenteditable] to empty(like $(this).html("")) then caret disappeared.
Is it bug? Also I found some other solution. using setTimeout function. but It's not perfect solution for me. when ...
2
votes
1answer
49 views
insertHTML unwraps div while inserting when selection is inside a node
In a contenteditable element, when execCommand is called with command insertHTML, if selection is inside a node command unwraps the div tag around the inserted html segment.
Sample HTML Code block is ...
1
vote
1answer
109 views
Why does the contentEditable's caret disappear when it is scaled down in Firefox, IE?
I'm making a rich web client where you can create slides for a presentation. One of the features is the ability to zoom the page to fit the screen. I use a CSS transform to do so, and on small ...
1
vote
2answers
75 views
Toggle contentEditable on click
I'm trying to make a div contentEditable when it is clicked, and then set contentEditable to false on mouseout, but I've had no success so far. Clicking a link appears to highlight it, but otherwise ...
0
votes
1answer
40 views
Show source code next to contentEditable div
Right now, I'm trying to create a WYSIWYG HTML editor, and I need to display the source code of a contentEditable div next to the div that is being edited. I'm trying to automatically synchronize ...




