vote up 1 vote down star

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 works well and I can edit the content of this div, but pressing Enter is rejected with a beep.

When I add a textarea element to that page the Enter key works and I can add lines, but not in the contentEditable element.

When I attach event to that element I see that pressing the Enter key triggers a keyDown event, but not a keyPress.

Anyone has an idea what might cause it?

Thanks,
splintor

flag

67% accept rate
Does the document work correctly (as expected) in a normal browser? – Borgar Feb 3 at 13:30
Yes - in a normal browser it works perfectly OK. – splintor Feb 5 at 21:08

1 Answer

vote up 0 vote down

Most HTML elements ignore whitespace. Including a \r or \n in any DIV or similar element is just ignored.

link|flag
But when done in a separate browser window, there is no problem. The browser translate <enter> pressings to <br>s. – splintor Feb 5 at 21:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.