Tagged Questions

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)
3
votes
3answers
2k views

Removing resize handlers on contentEditable div

I created a contentEditable div to use as a rich textarea. It has resize handlers around it that I'd like to get rid of. Any idea how I'd do this? Edit: This appears to be happening because I am ...
2
votes
2answers
96 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
301 views

Any WYSIWYGs that use contentEditable rather than an iframe?

I am looking for a list of WYSIWYG editors that use contentEditable rather than a designMode iframe. The reason I want this is that I want to have a few regions (divs) on my site that users can edit, ...
1
vote
1answer
176 views

Automatic scrolling when contentEditable/designMode in a UIWebView

I am attempting a rich-text editor (with HTML export capability) for an iPhone application I am working on, and decided to use iOS5's WebKit support for contentEditable/designMode. I have hit a wall ...
1
vote
1answer
636 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 ...
0
votes
0answers
176 views

touchmove event in Safari/iOS5/iPad disables contenteditable - any workaround?

I have a serious problem in Safari on iPad. The new contenteditable features doesn't seem to work with touchmove event! code: ... <script> function doNothing(event) { return; } function ...
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
2answers
257 views

DIV Contenteditable expand problem

I have a div with contenteditable set to true to act as a text input. Now usually, it expands as some text reaches the end of the div, but if I resize the div, this stops happening. The browser no ...