I would like to show and hide a div during hover and hover out.
here\'s what I\'ve done lately.
css
Why not just use .show()/.hide() instead?
.show()/.hide()
$("#menu").hover(function(){ $('.flyout').show(); },function(){ $('.flyout').hide(); });