|
|
set readonly and not readonly property in javascript - Javascript
|
Views : 597
|
|
Tagged in : Javascript
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
Javascript readonly property:
Set readonly property using javascript
var v2 = document.df.val1;
v2.readOnly = true;
Set not readonly property using javascript:
var v2 = document.df.val1;
v2.readOnly = false;
|
|
By Ramya, On - 2009-09-30 |
|
|
|