Sorry about that ignore my previous post - - a quick search of the
archive revealed the answer..

.hover is the way to do this.

$(document).ready(function(){
    $("#div1").hover(function () {
      $("#div3").slideDown(500);
     }, function() {
        $("#div3").slideUp(300);
    });
  });

Reply via email to