hi,
Blöde frage aber so müste es doch eigentlich für inputs gehen oder?
function init_input() {
var inputs = document.getElementsByTagName("input");
var i;
for (i = 0; i < inputs.length; i++) {
inputs[i].onfocus = function () {
window.aktiveTextArea = this; //Name stimmt nich mer so ganz
};
}
}
haltich