I have a pop up window made in JS. There is a lot of buttons and text boxes in that pop up. I want to make this whole pop up read only. Is there is any method in Java script?
Read only pop up
Collapse
X
-
Originally posted by AMT IndiaI have a pop up window made in JS. There is a lot of buttons and text boxes in that pop up. I want to make this whole pop up read only. Is there is any method in Java script?
[CODE=html]
<input type="button" value="test" disabled=""/>
[/CODE]
it only has to be set ... if you want the elements enabled you have to remove the attribute.
kind regards ...Comment
-
Originally posted by dmjprothis is very simple .....
u can do this by enable the readonly attribute of all fields.
say .. <input type = text readonly>
i think this ll work for u.
kind regards.
dmjpro.
kind regards ...Comment
Comment