I am trying to show a div when the cursor hovers over and image and hide the div when It is not hovered over the image how is this done?? So far I have a basic show:
<script type="text/javascript">
$(document).ready(function(){
$(".plans").hover(function()
{
$("#planssubnav").show("slow");
}
);
});
</script>