Im busy messing around with the mega menu example shown on sitepoint but noticed it uses a plugin to delay the hover. How do i adjust the Jquery so that i don't use the plugin. Sorry I can't figure it out my code so far
$(document).ready(function() {
function addsubmenu(){
$(this).addClass("hovering");
$(".hovering div").animate({"opacity": "toggle"}, { duration: "slow" });
}
function removesubmenu(){
$(this).removeClass("hovering");
}
});
but its not doing anything