Advertisement
HungDev

Main Nav Js

Jan 2nd, 2018
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.23 KB | None | 0 0
  1. //SlideToogle Main Navigation
  2.         $('.main-nav li').hover(function () {
  3.             $(this).find('.dropdown-menu').slideDown('fast');
  4.         }, function () {
  5.             $(this).find('.dropdown-menu').slideUp('fast');
  6.         });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement