This is a basic drop-down menu you can add to your site. It's like a collapse able
box like in vBulletin Modules. Except the way to get the content to drop is if you click the text & your content will fall underneath the text you clicked.
Script:
Code:<html> <head> <script type="text/javascript"> function drop(id) { if (document.getElementById(id).style.display == 'block') { document.getElementById(id).style.display = 'none'; } else { document.getElementById(id).style.display = 'block'; } } </script> </head> <body> <a onclick="drop(1)">TEXT TO CLICK</a> <div id="1" style="display:none;">CONTENT IN THE DROP-DOWN MENU</div> </body> </html>


LinkBack URL
About LinkBacks




Reply With Quote





and easily expandable into multi-level menus



Bookmarks