I am trying to create a cart link where the shopping cart opens out on hover. I am able to get the cart to open out on hover and close when moving away. However I cannot get the cart block to stay open once hovered over. I would like the car block to open out on hover and stay open if you hover over it. You will see what I mean if you hover over the cart link in the top right corner of this page.
rel=“nofollow”http://dl.drop Box.com/u/4380589/Rococlothing/index.html
The jQuery I am using is:
jQuery( #cart-links .links .first a ).mouseover(function(){
jQuery( .block-cart ).slideDown(400);
}).mouseout(function(){
jQuery( .block-cart ).slideUp(400);
});
jQuery(".block-cart").mouseover(function(){
jQuery(this).show();
}).mouseout(function(){
jQuery(this).fadeOut("slow");
});