Link to home
Start Free TrialLog in
Avatar of Yuri Boyz
Yuri BoyzFlag for Uganda

asked on

How to call function if Enter key is pressed from Touch or mobile device

I have a responsive menu.  I call a Javascript function if enter key is pressed from mobile.
On desktop the following code works fine but how to call the function if enter key is pressed from touch devices?
jQuery("#input").keypress(function(e) {
    if(e.which == 13) {
   
     RunFunction();
    
    }
});

Open in new window

thanks
ASKER CERTIFIED SOLUTION
Avatar of Michael Vasilevsky
Michael Vasilevsky
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Yuri Boyz

ASKER

Thanks
Can I also use keypress event?