I have a jquery problem. After I have written a code which can be seen below. My hyperlinks do not work somehow. The same links which are situated on the footer work perfectly. Most probably I am doing something wrong in query. Could you help me to handle the problem.
Thanks,
$(".menu-url > a").on('click mouseenter',
function(){
$(this).css("color","#000"),
$(this).next("div").css("visibility","visible"),
$(".menu-url > div").not( $(this).next("div") ).css("visibility","hidden"),
$(".menu-url > a").not( $(this) ).css("color","#fff");
return false;
}
);
$(document).click(function() {
$(".menu-url > div").css("visibility","hidden"),
$(".menu-url > a").css("color","#fff");
});
$(".menu-url").click(function(e) {
e.stopPropagation();
return false;
});