Is there anything incorrect or risky by writing
var i = edit_array[5] - 1;
document.form1. cbt[i].checked=true;
as
document.form1. cbt[edit_array[5]-1].checked=true;
--
Ed Jay (remove 'M' to reply by email)
Win the War Against Breast Cancer.
Knowing the facts could save your life.
var i = edit_array[5] - 1;
document.form1. cbt[i].checked=true;
as
document.form1. cbt[edit_array[5]-1].checked=true;
--
Ed Jay (remove 'M' to reply by email)
Win the War Against Breast Cancer.
Knowing the facts could save your life.
Comment