-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMobile-Device-Detect.html
More file actions
28 lines (28 loc) · 887 Bytes
/
Mobile-Device-Detect.html
File metadata and controls
28 lines (28 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Skype Download</title>
</head>
<body>
<script type="text/javascript">
if (navigator.userAgent.match(/iPhone/i)) {
/* Do something here.
location.replace("https://www.google.com");
*/
} else if(navigator.userAgent.match(/iPod/i)) {
/* Do something here.
location.replace("https://www.google.com");
*/
} else if(navigator.userAgent.match(/iPad/i)) {
/* Do something here.
location.replace("https://www.google.com");
*/
} else {
/* Do something here.
location.replace("https://www.duckduckgo.com");
*/
}
</script>
</body>
</html>