Recommend this page to a friend! | Stumble It! | Bookmark in del.icio.us |
Classes of Ghali Ahmed | > | DG | > | js/js.js | > | Download | ||
|
Download |
function chekUnchek(chek,num,sufix) { etat = (chek.checked ==true )?true:false ; for(i=0;i<num;i++){ var chek= document.getElementById(sufix+i) ; chek.checked=etat ; } } function chekUnchekByLine(idchek) { var chek=document.getElementById(idchek) var etat= (chek.checked ==true )?false:true ; chek.checked=etat ; } |