Menu Toggle
by bizamajig
HTML
<div id="eventDescriptions">
<div id="meet_growlab">BLAH BLAH BLAH
<p><a href="#growlab" class="close">Close</a></p>
</div>
<div id="buddy_tv">BLAH BLAH BLAH
<p><a href="#buddytv" class="close">Close</a></p>
</div>
</div>
<ul id="eventTitles">
<li><a href="#" id="growlab" rel="#meet_growlab">Meet GrowLab - Canada’s Y-Combinator Arrives in Vancouver (June 24, 2011)</a></li>
<li><a href="#" id="buddytv" rel="#buddy_tv">Building the Web's Best Entertainment-Based Community Site: Andy Liu, CEO and Founder of BuddyTV (April 1, 2011)</a></li>
</ul>
JavaScript
$(document).ready(function(){
$('#eventDescriptions>div').hide();
$('#eventTitles a').click(function(){
var target = $(this).attr("rel");
$(target).show('slow');
});
$('#eventDescriptions a.close').click(function(){
$(this).parent().parent().hide('slow');
})
});