Hi Gurus
I have the following statement in my code:
var e = form.elements;
Is it possible to put any conditions on this statement. What I actually want to say is:
var e = form.elements BUT ONLY FOR CHECKBOXES THAT START WITH R.
IN that way <INPUT TYPE="checkbox" NAME="r23"> would be part of e, but <INPUT TYPE="submit">, etc... would not be included
TIA
- Nicolaas
I have the following statement in my code:
var e = form.elements;
Is it possible to put any conditions on this statement. What I actually want to say is:
var e = form.elements BUT ONLY FOR CHECKBOXES THAT START WITH R.
IN that way <INPUT TYPE="checkbox" NAME="r23"> would be part of e, but <INPUT TYPE="submit">, etc... would not be included
TIA
- Nicolaas
Comment