Hi all Any one help me to create a max and min tab.Means if i click on + button it will shown in the page and if i click - it will go upwards. i am creating this page in tables. please help me it si urgent
<div id="tabme"> [All of that messy table code you want to show and hide goes here] </div> <p><a href="javascript:document.getElementById('tabme').style.display='block'">+</a> | <a href="javascript:document.getElementById('tabme').style.display='none'">-</a></p> Code (markup):
Hi, Seriously advise you to use <div> tags for layouts instead of tables as it makes stuff like this much easier and also keeps the page friendly for bots, mobile devices, accesibility browsers etc. Also, to hide a cell/row from a table and have the layout retained you can use the CSS style visibility:collapse. - P