when hovering the dropdown submenus, need to keep the topbar items active
while hovering over the the submenu
-jQuery(function(n){});
\ No newline at end of file
+jQuery(function(e){var n=e("body"),t=n.find(".submenu");n.on("mouseenter",t,function(){e(this).parent().addClass("active")}),n.on("mouseleave",t,function(){e(this).parent().removeClass("active")})});
\ No newline at end of file
jQuery(function($){
-
+
+ var body = $('body');
+ var submenu = body.find('.submenu');
+
+ body.on("mouseenter", submenu,function(){
+ $(this).parent().addClass("active");
+ })
+ body.on("mouseleave", submenu,function(){
+ $(this).parent().removeClass("active");
+ })
+
});
\ No newline at end of file