Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save DevCodo/bc1729d4d8dabd13bfee93c918737b80 to your computer and use it in GitHub Desktop.

Select an option

Save DevCodo/bc1729d4d8dabd13bfee93c918737b80 to your computer and use it in GitHub Desktop.
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
// код для мобильных устройств
} else {
// код для обычных устройств
}
// Проверить есть ли поддержка touch евентов
function is_touch_device() {
return !!('ontouchstart' in window);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment