i have a jquery login drop down
I use this code to show the login <div>:
$(document).ready(function() {
$('.vv2').hover(function() {
$('#boxa').slideDown('slow');
});
});
I want to know how to hide it again if the user go away from the login area.
the code here
http://www.sprnt.net/sprnt/
the first button in the top left screen
Try this:
When using hover, you can pass 2 functions, the first for mouseOver and the second for mouseOut.