Hallo,
Das Problem bleibt dann nur weiterhin:
Wie bekomme ich die einzelne nr. hinter die "help" id ?
function chk_help (nummer){
document.all.help[nummer].style......
}
funktioniert wie gesagt nicht :-(
function chk_help(nummer){
if(document.getElementById)document.getElementById("help"+nummer).style.cursor="help";
else if(document.all)document.all["help"+nummer].style.cursor="help";
}
mit
<a id="help1" href="bla.htm">bla</a>
<a id="help2" href="blub.htm">blub</a>
usw.
MfG, Thomas