DEV Community

Discussion on: A simple way to detect if browser is on a mobile device with Javascript

 
timhuang profile image
Timothy Huang

Thank you!

Thread Thread
 
mitya profile image
Dima • Edited
const isMobile = () => /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
Enter fullscreen mode Exit fullscreen mode
Thread Thread
 
timhuang profile image
Timothy Huang

Wow, really short! Thanks for your improvement.