Forum: JavaScript / DHTML / AJAX May 9th, 2007 |
| Replies: 3 Views: 2,704 try this...
for(i=1;i<=3;i++) {
tmp = "status" + i;
tmp1 = "document.form1." + tmp ;
alert(tmp1);
if(tmp1.checked){
..........................
}else{
.......................... |
Forum: HTML and CSS May 9th, 2007 |
| Replies: 2 Views: 1,126 use if else conditions to do this..! if tru then load true image or if false then load false image...
I hope this will help you.. |