I'm currently working on implementing a jQuery Menu that I came across online. You can find it here:
However, I've encountered an issue where the menu doesn't seem to allow links to URLs.
I attempted to remove e.preventDefault from the script, but unfortunately, that didn't resolve the problem either.
http://jsfiddle.net/NinjaSk8ter/4m7Q2/3/
$(document).ready(function(){
$('a').on('click', function(e){
e.preventDefault();
});
$('#ddmenu li').hover(function () {
clearTimeout($.data(this,'timer'));
$('ul',this).stop(true,true).slideDown(200);
}, function () {
$.data(this,'timer', setTimeout($.proxy(function() {
$('ul',this).stop(true,true).slideUp(200);
}, this), 100));
});
});
If anyone has any insight into what might be causing the problem, I would greatly appreciate your input!