Click to See Complete Forum and Search --> : menu jumps up & down


edje01
08-17-2003, 06:56 AM
I copied & modified a JScript for my site & now the menu keeps jumping up & down... Can anyone give me some feedback on how to correct the problem?

nasos
08-17-2003, 08:22 AM
can you provide the link

Fang
08-17-2003, 01:10 PM
you are moving them with this snippet:

if (document.all) {
document.all(ttls[i]).style.pixelTop += move;
document.all(subs[i]).style.pixelTop += move;
}

Delete the "if" and "else if" snippets.
Your code does not support new browsers, there is no check for: document.getElementById

edje01
08-17-2003, 04:36 PM
Thanks Fang,

Problem corrected!!!!

You mad me a happy man ;-)))