Hallo!
function test(divName)
{
document.all.divName.style.color="red";
}
function test(divName)
{
document.all['divName'].style.color="red";
}
So wird divName als Variable erkannt!
mfg, André Laugks
Hallo!
function test(divName)
{
document.all.divName.style.color="red";
}
function test(divName)
{
document.all['divName'].style.color="red";
}
So wird divName als Variable erkannt!
mfg, André Laugks