Jquery touch friendly menu plugin

Permalink
Anyone know of something that works with C5?

 
tonyswaby replied on at Permalink Reply
If anyone wants to do this I used this...

http://cssmenumaker.com/blog/creating-a-responsive-menu...

Full control of style in style sheet. Responsive and touch friendly for tablets.

and do this to disable parents...

$('#cssmenu a').click(function() {
if($('ul', $(this).parent()).length > 0) {
return false;
}
});