Guest User

Untitled

a guest
May 26th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. var agent = navigator.userAgent;
  2. if (agent.match(/ipod|iphone/i)) {
  3. alert('iphone/ipod');
  4. }
  5. else if (agent.match(/ipad/i)) {
  6. alert('ipad');
  7. }
  8. else {
  9. alert('neither ipad nor iphone nor ipod');
  10. }
Add Comment
Please, Sign In to add comment