vendredi 29 mai 2015

Javascript Hover and Toggle

My navigation is hidden and hover is showing but disappearing immediately, I want the navigation to show on hover and display: none on mouse out of the element

$(document).ready(function(){
    $("#nav-holder").hover(function () {
        $("nav").animate({height: 'toggle'});
    });
});

Aucun commentaire:

Enregistrer un commentaire