so I'm having a bit of trouble getting a certain div to show onclick. Any takers?
HTML
<div style="float:left;width:40px;">
<span class="productControl" style="position:relative;">
<div class="productMenuHolder" style="display:none;">
<ul class="productMenuList">
<li class="productMenuItem">Add to Collection</li>
<li class="productMenuItem">Share</li>
</ul>
</div>
</span>
</div>
jQuery
$("span.productControl").click(function(){
$(this).next().show();
});
The productMenuHolder doesn't seem to show up!
$(function () { ... });to make sure your handlers are being bound? Also, why does your span contain your div? That'll cause problems later. – g.d.d.c Jul 14 '10 at 5:03