Hi,
I have the following (broken) code:
$(".old_post").hover(function(){
$(this > ".post_right_nav").show();
post _ right _ nav is a div(containing other divs) that holds some controls for the user to press. I'd like to only show these controls when the user is hovering over a post. How can I properly select the child element of every post?