Hey all,
I want to have a link on my website that allows you to expand/collapse a certain table (i.e: show or hide).
The page looks like this:
Thanks.
-influxer
I want to have a link on my website that allows you to expand/collapse a certain table (i.e: show or hide).
The page looks like this:
Code:
<a href="#" onClick="WHAT GOES HERE">Click here</a> to show the options. <!--If they click the link above, show the following table and change the word 'show' to 'hide'---> <!--If they click the link again, hide the following table and change the word 'hide' to 'show'---> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td><input name="page_bg_url" type="text"></td> </tr> <tr> <td> <select name="page_bg_repeat"> <option value="no-repeat">No repeat</option> <option value="repeat">Tile (all directions)</option> </select> </td> </tr> <tr> <td> <select name="page_bg"> <option value="no">No</option> <option value="yes">Yes</option> </select> </td> </tr> </table>
-influxer
Comment