I need to show a div when you house over its parent (default is for the child div to be hidden). Is the only way to do this with javascript? Thanks
With jQuery, absolutely:
$("#some_parent").hover(function () { $(this).children("#some_child_div").show(); });