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)
2
votes
1answer
482 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?
0
votes
0answers
178 views

Cursor positioning around block-level elements in Firefox designMode

I'm playing around with cursor positioning in designMode documents. I have some "blocks" of content -- basically a <div> -- and I'd like the cursor to be positionable immediately before and ...
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
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
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> ...