How can I show a div with Jquery hover and then hide?
        Posted  
        
            by user342391
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by user342391
        
        
        
        Published on 2010-06-10T17:31:28Z
        Indexed on 
            2010/06/10
            17:42 UTC
        
        
        Read the original article
        Hit count: 304
        
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>
© Stack Overflow or respective owner