Skip to content

Instantly share code, notes, and snippets.

View stphn's full-sized avatar
💻
coding

Stéphane Goeuriot stphn

💻
coding
View GitHub Profile
@stphn
stphn / detect.js
Created October 12, 2019 12:46 — forked from 4ndrej/detect.js
detect mobile device using javascript
var isMobile = {
Android: function() {
return navigator.userAgent.match(/Android/i);
},
BlackBerry: function() {
return navigator.userAgent.match(/BlackBerry/i);
},
iOS: function() {
return navigator.userAgent.match(/iPhone|iPad|iPod/i);
},