Hi guys..
Just the question... I tried to make with animate.css and js animated dropdown menu its working, but not what i really want :)
I tried with addClass and removeClass but nothing....
Its possible to make animation -- hover on menu than open the dropdown.?
code:
$(function() {
$('.dropdown-toggle').hover(function() {
$(this).next('.dropdown-menu').addClass('open animated fadeInDown');
});
});
If somebody have some idea please let me know :) Thanks