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?
yes ... you may loop through your input-elements and set the disabled-attribute for them:
-
<input type="button" value="test" disabled=""/>
-
it only has to be set ... if you want the elements enabled you have to remove the attribute.
kind regards ...