Hi,
I've used frameset and frames in my web page and i can show and hide frames with this javascript code
It works ok. But i want to show and hide animated or slowly. I tried to use
settimeout("Clo seIt()",500)
but it did not work. Frame is still closing as soon as i clicked or wait 500 ms then closes.
How can i hide and show frame slowly.
Thanks.
I've used frameset and frames in my web page and i can show and hide frames with this javascript code
Code:
function CloseIt()
{
parent.parent.frames["fraSet"].cols='*,0';
}
settimeout("Clo seIt()",500)
but it did not work. Frame is still closing as soon as i clicked or wait 500 ms then closes.
How can i hide and show frame slowly.
Thanks.
Comment