Im looking for a piece of code that can be used to select all input text fields and then disable and enable them at will.
I was trying to work off this:
text = document.getElementsByTagName("input");
THEN when required:
text.disable = true;
text.disable = false;
Thanks, Regards X.