This is my fiddle I have a hard time to create a dropdown menus with the help of jquery.
$("a#SHOP").hover(function () {
$("ul#test").fadeIn();
}, function () {
window.setTimeout(function () {
$("ul#test").fadeOut();
}, 500);
});
I am looking for submenus should be visible on hover?