I can not access in the second view elements(textBoxs) reference . why it could be




















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)
}