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

  1. if (navigator.userAgent.indexOf('iPad') != -1) {
  2. location.href = 'ipad.html' + paramStr;
  3. }else if (navigator.userAgent.indexOf('iPhone') != -1) {
  4. location.href = 'iphone.html' + paramStr;
  5. }else if (navigator.userAgent.indexOf('iPod') != -1) {
  6. location.href = 'iphone.html' + paramStr;
  7. }else if (navigator.userAgent.indexOf('Android') != -1) {
  8. location.href = 'android.html' + paramStr;
  9. }