source for sakino.kelbie.scot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

9 lines
400 B

if (navigator.userAgent.indexOf('iPad') != -1) {
location.href = 'ipad.html' + paramStr;
}else if (navigator.userAgent.indexOf('iPhone') != -1) {
location.href = 'iphone.html' + paramStr;
}else if (navigator.userAgent.indexOf('iPod') != -1) {
location.href = 'iphone.html' + paramStr;
}else if (navigator.userAgent.indexOf('Android') != -1) {
location.href = 'android.html' + paramStr;
}