| Adi | |
| Soyadi | |
| Memleket |
| Meslek | |
| Mezuniyet | |
| Brans |
Javascript code
function show() {
var txt = new Array();
var alan = ['a1','a2','a3','b1','b2','b3'];
for (var i = 0; i < alan.length; i++) {
txt[i]=document.getElementById(alan[i]);
txt[i].addEventListener("keyup", wsss, true);
}
alert(txt.length);
}
function wsss(e){
alert("Mesaj"); // this method not work at the second view elements(textBox)
}
Replies
Know the answer? Post it — somebody with the same question will find it here.