
So what I'm saying is, when the user clicks "Albums by Big L, alive and posthumous" the list of his albums drops down. I just have no idea how to do it hehe. Any pointers?
Posted 07 April 2013 - 09:07 AM

Posted 07 April 2013 - 10:24 AM
<span id="myheading">Albums by Big I, alive and posthumous:</span>
<div id="submenu" style="display: none;">
<ul>
<li>Lifestylez ov da Poor & Dangerous, 1995</li>
...
</ul>
</div>
$(function() {
$("#myheading").click(function() {
$("#submenu").slideDown();
});
});
This post has been edited by Martyr2: 07 April 2013 - 10:25 AM
