Tagged Questions
2
votes
1answer
977 views
iPhone designmode support
Anyone knows if Safari on the iPhone and iPod touch supports iFrame in design mode and if so, how I can enable it? I have tried following ways, but none work (but it works on my PC):
...
1
vote
2answers
150 views
Set focus on iframe in Chrome
I have an iframe (id: 'chat') with designMode='on' in Chrome.
On Enter keypress event I call the function send(), which takes the iframe contents and writes it to a socket. My problem is that when ...
1
vote
1answer
135 views
Force browser to insert <p> tag when pressing Enter in a designMode IFrame
How can I make the browser insert <p> tags instead of <br> tags when I press enter in a designMode IFrame? I get inconsistent behavior across Firefox, Chrome and IE and was wondering if ...
0
votes
1answer
69 views
designMode iFrame Get Cursor Position
I want to get the cursor position of an editable iFrame (using designMode). Here is the code I have so far:
document.getElementById('iframe_id').contentWindow.document.getSelection().getRangeAt(0)
...
0
votes
1answer
52 views
Inserting Text into a Designmode Iframe Triggered By a Button Outside the Iframe
I have an editable iframe and I would like to insert text at the cursor location when the user clicks a button that is outside the iframe. I am trying to use the following code to insert the text:
...
0
votes
2answers
302 views
why window.setTimeout is required to set an iframe's designmode “on” in IE
In my experiment, I have seen that even after window.onload event, window.setTimeout is required to make an iframe editable by setting iframe's designmode "ON". And this happens in IE, while in ...
0
votes
2answers
233 views
Can't get value of designMode IFRAME
I can't retrieve the contents of an iframe, when designmode = 'on'. Here is my code:
val = $("#frame").val();
I've tried everything, and nothing works, help?
0
votes
1answer
271 views
Make specific elements in designMode iframe read-only?
I have an iframe which has designMode set to 'on'. In it, I have a div which the user should be able to type in, and also in the iframe, I have another div which the user should NOT be able to type ...
0
votes
1answer
976 views
Restricting enter keypress event in an IFrame, does not work
I have an IFrame within my page and am using the designMode="on" on this iframe for a small-level rich text editing.
My concern is that I need not allow the user to enter new lines in it - meaning, I ...