4
votes
2answers
3k views
Insert text in Javascript contenteditable div
Hi guys,
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 …
2
votes
2answers
71 views
What effect does the javascript (DOMelement).contentEditable=”true”; do to the webpage?
It seems it allows you to edit the content of a webpage, but what is actually happening? It also let you move things around in a WYSIWYG editor in the brower window. (I found out b …
2
votes
4answers
102 views
Textarea contenteditable
I am trying to make a textarea content editable and I am failing. I am using this code:
<textarea id='' class='' name='notes' rows='12' cols='67' contenteditable='true' >&l …
2
votes
2answers
341 views
return focus to contenteditable after execCommand?
Hi all,
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 t …
2
votes
3answers
1k views
Set cursor position on contentEditable <div>
Hi There,
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 appea …
2
votes
1answer
194 views
Problem detecting Newlines in JavaScript Range Object
I have some javascript that manipulates html based on what the user has selected. For real browsers the methods I'm using leverage the "Range" object, obtained as such:
var se …
2
votes
2answers
459 views
Prevent line/paragraph breaks in contentEditable
When using contentEditable in Mozilla, is there a way to prevent the user from inserting paragraph or line breaks by pressing enter or shift+enter?
2
votes
3answers
2k 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)
1
vote
0answers
14 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>
& …
1
vote
2answers
66 views
contenteditable and non button elements
I can easily do execcommand on a contenteditable selection if using a button. However using any other element fails.
http://jsbin.com/atike/edit
Why is this and how can I make i …
1
vote
1answer
245 views
How can I get the element the caret is in with Javascript, when using contentEditable?
Hi,
Let's say I have some HTML code like this:
<body contentEditable="true">
<h1>Some heading text here</h1>
<p>Some text here</p>
</body&g …
1
vote
3answers
439 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 …
1
vote
4answers
1k views
Javascript - Change font color of certain text in textarea
Is there any JS function that can change the color of certain text in a textarea?
For example, blar blar {blar} blar, {blar}, including { }, will be in blue. Other words will be i …
1
vote
2answers
273 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 …
1
vote
1answer
366 views
Why does contentEditable element reject the Enter key?
Hi,
I'm using an application that embeds IE control to show content. I change that content to contain a <div contentEditable="True">Hello World</div> element. This wor …
