Detect iPhone and iPad


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
  2. alert('You are using an iPhone, ipod or an ipad');
  3. }

Report this snippet


Comments


You need to login to view comments.