Normally validating checkbox with the same name is pretty simple. However, to submit to PHP you would want to use the name like xx[]. This then posts a problem in form validation as we cannot use document.form.xx[][1].checked to check if the element is checked.
It turned out that it is quite simple. Just treat the name as name and use the method below
document.form["xx[]"][1].checked
No comments:
Post a Comment