ASP.net Menu item Control Submenus not tapping in Touch screen

Hi all,
Used Asp.net Menu Control have designed a navigation bar .Using touchscreen Desktop in Internet Explorer(IE11), single tap not appear but double tap submenus appears but in Microsoft Edge/Google Chrome browser not appear submenus by single tap/double tap .
Touch is working in Edge/Chrome by single tap in other operations like texting etc. It's related to browser issue or code issue. I couldn't find it. Any settings need to change in the Asp.net Menu control.
I tried using jQuery /JavaScript to appear submenus but no result.Any help is appreciated .

$(document).ready(function () {
$(".menu1").click(function (e) {
$(this).toggleClass("show");
});

     });