function PrepareCounter() {
var ct = 1;
while(document.getElementById("id_answer"+ct)) {
document.getElementById("id_answer"+ct).setAttribute("onFocus", "countChars('textbox','char_count',140)", "onKeyDown", "countChars('textbox','char_count',140)", "onKeyUp", "countChars('textbox','char_count',140)");
ct += 1;
}
}
フォーカスすると要素countChars
は実行されますが、何かを書くと実行されません。