Click to See Complete Forum and Search --> : <div> problem
davey
12-09-2003, 03:43 PM
i want the <div id="battles" style="visibility:visible"> and everything below it to be switched to hidden when the function do_totals1 is run and back to visible when the function do_totals2 is run any help is greatly appreciated
MichaelM
12-09-2003, 04:05 PM
This may be IE specific, but it shouldn't be that hard to find the NS compatible code in a google search...
function do_totals1 {
document.battles.style.visibility = "hidden";
//rest of your code below...
}
function do_totals2 {
document.battles.style.visibility = "visible";
//...
}
davey
12-09-2003, 04:15 PM
its in the code
the problem is
it doesnt work