Hello everyone, i have the following code, which works perfectly in chrome/ff:
chkbx_send_demo.onchange = function(){
if(sel_template.selectedIndex <= 0 && chkbx_send_demo.checked == true){
alert("Choose a Template");
sel_template.selectedIndex = 1;
}
if(chkbx_send_demo.checked == false){
sel_template.selectedIndex = 0;
}
}
but just won't work in IE. I've tried to change the event to chkbx_send_demo.onclick and it still won't work.