Detect & Message Iphone, Ipad, and Ipod website visitors with Javascript

Detect & Message Iphone, Ipad, and Ipod website visitors with Javascript

A java script snippet which will detect and send custom alert boxes (messages) to every Iphone, Ipad, or Ipod user that visits your website.

[Normal_Box]

Iphone Detection Java ScriptIphone, 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 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.

Tags: JavaScript

10 comments

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.