I have been tasked with taking a site that uses CSS drop down menus and making it responsive. Since mobile phones don't have hover events I am using Modernizr to add classes to the menus to show/hide them. This works fine. The problem is that touching the parent element still results in the phone navigating to the parent element so unless you are super fast, you can't click on the sub items that appear in the menu. Return false and preventDefault both work on my iphone simulator but fail on real devices (android and iphone).
//make sure main nav links don't take you anywhere on mobile
$('#a-popular-main-nav').on('touchend', function(event) {
event.preventDefault();
return false;
});
$('#a-profile-main-nav').on('touchend', function(event) {
event.preventDefault();
return false;
});
if (Modernizr.touch) {
$('.menu').each(function () {
var $lis = $(this).find('li');
$lis.on('touchend', function(event) {
var $this = $(this);
if ($this.hasClass('activated')) {
$this.removeClass('activated');
}
else {
$lis.removeClass('activated');
$this.addClass('activated');
}
event.stopPropagation();
});
//close menus if touched outside the menu
$('body').on('touchend', function() {
$lis.removeClass('activated');
});
});
};
I've tried every combination of stopPropagation, preventDefault, and return false. Has anyone run into this before?