vote up -2 vote down star

Hello

Does anyone know a method to set a HTML DIV to read-only which works in IE and non-IE browsers?

The situation is where the content of a div is updated via innerHTML, but where the div is populated with a page with editable content from another system. But I do not want this content to be editable. Can this be done? –

Thanks

Martin O'Shea.

flag

0% accept rate
3  
All non-input elements in HTML are read only. DIV being one as well. Maybe you will have to paraphrase your question. – Robert Koritnik Jul 6 at 8:19
do you mean the child elements of the div that accept input? – redsquare Jul 6 at 8:19

3 Answers

vote up 1 vote down

<div> tags are already read-only. They do not allow input unless you have some sorts of <input>, <textarea> tags within them.

To make a <textarea> read-only:

<textarea readonly='readonly'>
You cannot enter any more text here!
</textarea>

For an <input> tag:

<input type='text' readonly='readonly' value='I am read-only' />
link|flag
well he didn't ask how to make a textarea readonly... – Robert Koritnik Jul 6 at 8:20
Maybe I should have been more specific: the situation is where the content of a div is updated via innerHTML, but where the div is populated with a page with editable content but which I do not want to be able to modify. Can this be done? – MartinOShea Jul 6 at 8:31
put this explanation in your question. – Robert Koritnik Jul 6 at 8:37
vote up 0 vote down

If you are just trying to set all of the input elements inside a div to be un-editable then you can either:

  • Write a script to iterate though them setting them to disabled/readonly where appropriate.
  • Overlay a transparent image (maybe with a shade of gray in it) on top of the div
link|flag
2  
this doesn't make those elements read-only. It only makes them unclickable. You can still TAB to them and manipulate their content. But it's true it will hinder most users. – Robert Koritnik Jul 6 at 8:36
vote up -1 vote down

Disable editable DIV

If your DIV's content is editing enabled, then set it's contentEditable property to false.

getElementById('ElementID').contentEditable = false;

In this case you'll be able to programatically (using Javascript) edit/change your DIV's content (using innerHTML for instance but better to traverse it via DOM), but users won't be able to edit the content themselves via standard methods (keyboard/mouse).

link|flag

Your Answer

Get an OpenID
or

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