Skip to content

Instantly share code, notes, and snippets.

@handleman
Last active January 2, 2016 05:09
Show Gist options
  • Select an option

  • Save handleman/8254820 to your computer and use it in GitHub Desktop.

Select an option

Save handleman/8254820 to your computer and use it in GitHub Desktop.
Определение платформы браузера, в данном случае ios или нет
var iOS = false,
p = navigator.platform;
if (p === 'iPad' || p === 'iPhone' || p === 'iPod') {
iOS = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment