i have a problem with a mobile menu, i want an element to get triggered when i click on the menu links my code works perfectly when tested on desktop browsers but not in mobile browser
this is my code :
jQuery(document).ready(function(){
   jQuery(".menu-item > a").on("click touchstart", function(){
       jQuery(".hamburger-box").click();
   });
});
 
     
    