Hi all,
This one is driving me batty! Here is a small routine that is meant to clear any radio button of the group named "course_single". There are 5 radio buttons in the group. This routine is called from other events on the form.
This works in IE and Safari, but does not work in Firefox. Any ideas why?? Thanks!
function update_selection_1() {
for (var i=0;i<dls_form.elements["course_single"].length; i++){
dls_form.elements["course_single"].checked=false;
}
}
This one is driving me batty! Here is a small routine that is meant to clear any radio button of the group named "course_single". There are 5 radio buttons in the group. This routine is called from other events on the form.
This works in IE and Safari, but does not work in Firefox. Any ideas why?? Thanks!
function update_selection_1() {
for (var i=0;i<dls_form.elements["course_single"].length; i++){
dls_form.elements["course_single"].checked=false;
}
}