Hellos,
How could I modify the code below to open allow only one table to be open at a time?
IE user clicks table2 while table1 is open, table1 then closes and table2 opens.
Thanks, Danzig
How could I modify the code below to open allow only one table to be open at a time?
Code:
function table_actions(tbl) {
if (document.getElementById(tbl).style.display != "") {
document.getElementById(tbl).style.display = "";
}
else {
document.getElementById(tbl).style.display = "none";
}
}
Thanks, Danzig