Hey all,
i have a javascript function which is as follows:
function menuContent() {
Effect.BlindDown('d1');; return false;
}
which works great it blinds down which is what it is meant to do.
But my problem is that i want the ‘dl’ div to have transparency all the time, from when i open my website.
Here is the transparency code i have which works BUT just not in that function.
new Effect.Opacity( this.parentNode, {duration:0.8, from:1.0, to:0.85} );
i need this to happen at the same time as the blind down. So in short i’m looking for a solution on how to combine these two elements in the one function.
Any ideas anyone?
Thanks in advance