I followed the sidr documentation at: http://www.berriart.com/sidr/
And I already have my left sidr menu working fine.
But on my mobile phone, only in the default browser in Android, when I click on the โOpen Menuโ link, I also click on my menu item โMenu 1โ, and therefore it opens my submenus with my switching effect. And I do not want this.
I just want to open my submenus when I click on my menu items and not on my link to open the menu.
I found a solution, that is, if I placed my sidr menu with some edge of the field, so as not to align with my link, to open the menu, the problem is solved, as in my second image.
But I do not want to give this margin, so Im trying to find another solution.
Does anyone have experience with this plugin and can give me help?
( This only happens in mobile browsers and in the Android browser, which are when buying a smartphone, but I want to use it on mobile devices, and many users should use Internet Explorer, which, in my opinion, is the standard browser for Android.)
Like this snapshot below, I have a problem because "Open the menu is aligned with" Menu 1 "and therefore I click on both!

Like this snapshot below, I have no problem because "Open Menu does not match" Menu 1 ", so I just click on" Open Menu "!

This is my jQuery to run the sidr plugin:
$(document).ready(function() {
$('#simple-menu').sidr({
name: 'sidr',
speed: 200,
side: 'left',
source: null,
renaming: true,
body: 'body'
});
});
$(document).ready(function() {
$('.sub-menu-sidr').hide();
$("#sidr li:has(ul)").click(function(){
$("ul",this).toggle('fast');
});
});
And here is my fiddle:
http://jsfiddle.net/y4CX4/1/