Alienware Posted September 4, 2008 Share Posted September 4, 2008 Ok so on my game i have a menu that runs on the left hand side of the site. I would like to make the tables on it collapsable here is one of the tables- <table align="center" width="100%" class="tbl"> <tr><td align="center" class="hdr">.::Other::.</td></tr> <tr><td align="left" class="tbl"> <a href="you.php" target="main">Your stats</a><br /> <a href="personal.php" target="main">Personal</a><br /> <a href="vote.php" target="main">Vote</a><br /> <a href="statistics.php" target="main">Game statistics</a><br /> <a href="notfinished.php" onclick="window.open(this.href, '_blank', 'width=500,height=700,scrollbars=yes,resizable=no,status=no,screenx=5,screeny=5');return false;" onkeypress="this.onclick()">FAQ</a><br /> <a href="abusereport.php" target="main"><font color="red">Report Abuse</font></a><br /> <a href="request.php" target="main"><font color="red">Parental control</font></a><br /> <a href="logout.php" target="main">Logout</a><br /> </td></tr> </table> I would like to only show the .::Other::. as it does now.. but when a user clicks on it the list drops down. any ideas? im stuck Link to comment https://forums.phpfreaks.com/topic/122665-collapsable-table/ Share on other sites More sharing options...
Ken2k7 Posted September 4, 2008 Share Posted September 4, 2008 Try this: <table align="center" width="100%" class="tbl"> <tr><td align="center" class="hdr" onclick="unHideTR('tbl');">.::Other::.</td></tr> <tr style='display: none;'><td align="left" class="tbl"> <a href="you.php" target="main">Your stats</a><br /> <a href="personal.php" target="main">Personal</a><br /> <a href="vote.php" target="main">Vote</a><br /> <a href="statistics.php" target="main">Game statistics</a><br /> <a href="notfinished.php" onclick="window.open(this.href, '_blank', 'width=500,height=700,scrollbars=yes,resizable=no,status=no,screenx=5,screeny=5');return false;" onkeypress="this.onclick()">FAQ</a><br /> <a href="abusereport.php" target="main"><font color="red">Report Abuse</font></a><br /> <a href="request.php" target="main"><font color="red">Parental control</font></a><br /> <a href="logout.php" target="main">Logout</a><br /> </td></tr> </table> <script> function unHideTR (c) { var e = document.getElementsByTagName("td"), l = e.length; while (--l > -1) if (e[l].className == c) toggleHide(e[l].parentNode); } function toggleHide (e) { if (!e || !e.style.display) return; var alt = e.style.display == "none"? "block" : "none"; e.style.display = alt; } </script> Link to comment https://forums.phpfreaks.com/topic/122665-collapsable-table/#findComment-633408 Share on other sites More sharing options...
Alienware Posted September 4, 2008 Author Share Posted September 4, 2008 thankyou that worked. The only problem i have now is that when i click on one... they all open not just one Link to comment https://forums.phpfreaks.com/topic/122665-collapsable-table/#findComment-633436 Share on other sites More sharing options...
Ken2k7 Posted September 4, 2008 Share Posted September 4, 2008 Elaborate please. What do you mean they all open? Isn't that what you wanted? Link to comment https://forums.phpfreaks.com/topic/122665-collapsable-table/#findComment-633437 Share on other sites More sharing options...
Alienware Posted September 4, 2008 Author Share Posted September 4, 2008 yes that is correct, and thankyou so much for helping. The only problem is.. i have more than one.. I have done the same to all on the menu bar.. But the problem is.. when a user clicks on one... instead of just that one dropping down, they all drop down. here is the site- www.ny-mobster.net Username: review password: review you will see what i mean Link to comment https://forums.phpfreaks.com/topic/122665-collapsable-table/#findComment-633438 Share on other sites More sharing options...
Psycho Posted September 4, 2008 Share Posted September 4, 2008 Give each secondary TR a unique ID and then call the function within the top TR passing the unique ID <html> <head> <script> function showHideTR(trID) { trObj = document.getElementById(trID); trObj.style.display = (trObj.style.display!='block') ? 'block' : 'none'; } </script> </head> <body> <table align="center" width="100%" class="tbl" border=1> <tr><td align="center" class="hdr" onclick="showHideTR('tbl-1');">.::Other::.</td></tr> <tr style='display:none;' id="tbl-1"><td align="left" class="tbl"> <a href="you.php" target="main">Your stats</a><br /> <a href="personal.php" target="main">Personal</a><br /> <a href="vote.php" target="main">Vote</a><br /> <a href="statistics.php" target="main">Game statistics</a><br /> <a href="notfinished.php" onclick="window.open(this.href, '_blank', 'width=500,height=700,scrollbars=yes,resizable=no,status=no,screenx=5,screeny=5');return false;" onkeypress="this.onclick()">FAQ</a><br /> <a href="abusereport.php" target="main"><font color="red">Report Abuse</font></a><br /> <a href="request.php" target="main"><font color="red">Parental control</font></a><br /> <a href="logout.php" target="main">Logout</a><br /> </td></tr> </table> <table align="center" width="100%" class="tbl" border=1> <tr><td align="center" class="hdr" onclick="showHideTR('tbl-2');">.::FUN AND SAFE::.</td></tr> <tr style='display:none;' id="tbl-2"><td align="left" class="tbl"> NY-Mobster is a fun place to be, but on<br /> top of that we aim to be the safest too!<br /> <br /> If you are a parent of a young person on<br /> NY-Mobster and have any concerns<br /> about the welfare of your child online,<br /> this is understandable.<br /> To combat this, you may join up then<br /> request parental controls, you may then<br /> monitor your childs messages to make<br /> sure you are happy!<br /> <br /> There is a staff member on most of the<br /> time to help solve any problems.<br /> <br /> We hope you enjoy NY mobster like<br /> many others!<br /> </td></tr> </table> </body> </html> You should consider adding a "pointer" mouse cursor to the 'hdr' class for usability. Link to comment https://forums.phpfreaks.com/topic/122665-collapsable-table/#findComment-633449 Share on other sites More sharing options...
Ken2k7 Posted September 4, 2008 Share Posted September 4, 2008 <table align="center" width="100%" class="tbl"> <tr><td align="center" class="hdr" onclick="unHideTR(this.parentNode.parentNode);">.::Other::.</td></tr> <tr style='display: none;'><td align="left" class="tbl"> <a href="you.php" target="main">Your stats</a><br /> <a href="personal.php" target="main">Personal</a><br /> <a href="vote.php" target="main">Vote</a><br /> <a href="statistics.php" target="main">Game statistics</a><br /> <a href="notfinished.php" onclick="window.open(this.href, '_blank', 'width=500,height=700,scrollbars=yes,resizable=no,status=no,screenx=5,screeny=5');return false;" onkeypress="this.onclick()">FAQ</a><br /> <a href="abusereport.php" target="main"><font color="red">Report Abuse</font></a><br /> <a href="request.php" target="main"><font color="red">Parental control</font></a><br /> <a href="logout.php" target="main">Logout</a><br /> </td></tr> </table> <script> function unHideTR (c) { toggleHide(c.getElementsByTagName("tr")[1]); } function toggleHide (e) { if (!e || !e.style.display) return; var alt = e.style.display == "none"? "block" : "none"; e.style.display = alt; } </script> Link to comment https://forums.phpfreaks.com/topic/122665-collapsable-table/#findComment-633450 Share on other sites More sharing options...
Alienware Posted September 4, 2008 Author Share Posted September 4, 2008 thankyou, this has worked. Thanks for all your help Link to comment https://forums.phpfreaks.com/topic/122665-collapsable-table/#findComment-633467 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.