Detect & Message Iphone, Ipad, and Ipod website visitors with Javascript
[Normal_Box]
Iphone, Ipad, & Ipod Detection Script
Mobile internet browsing is becoming more advanced and more commonly used everyday. Many internet users significantly use their mobile devices like Iphones, Ipads, and Ipods to browse the internet.
Here’s a java script snippet which will send alert boxes to every Iphone, Ipad, or Ipod user that visits your encoded webpage.[/Normal_Box]
Copy and paste the code into any webpage html.
Change “Place message here for iphone, ipad, and ipod users” to your preferred message.
[Normal_Box]
<script>
if ((navigator.userAgent.indexOf('iPhone') != -1) ||
(navigator.userAgent.indexOf('iPod') != -1) ||
(navigator.userAgent.indexOf('iPad') != -1)) {
alert('Place message for Iphone, Ipad, and Ipod viewers here');
}
</script>
[/Normal_Box]
We have included the iphone, ipad, and ipod detection script on this page, simply view this page with either product for an example.
Great post, I like all the codes on this site.
Hey that’s really cool. Thanks!