|
WDF Member
Join Date: September 2003
Posts: 41
|
javascript, div's
Hey guys, i have an easy one here.
2 divs, one visible one hidden. the ID for one div is "div1", the ID for the other div is "div2"
here's my function......to be executed on roll over..
function div_swap()
{
document.div1.visibility="hidden";
document.div2.visibility="visible"
}
whats missing, i know im close.
thanks
|