Guest User

Untitled

a guest
Nov 22nd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. var ua = navigator.userAgent;
  2. if(ua.indexOf('iPhone') > 0 || ua.indexOf('iPod') > 0 || ua.indexOf('Android') > 0 && ua.indexOf('Mobile') > 0){
  3.  
  4. window.location.href = "https://ja.stackoverflow.com/questions";
  5.  
  6. }else if(ua.indexOf('iPad') > 0 || ua.indexOf('Android') > 0){
  7.  
  8. window.location.href = "https://ja.stackoverflow.com/tags";
  9. }else{
  10.  
  11. window.location.href = "https://ja.stackoverflow.com";
  12. }
Add Comment
Please, Sign In to add comment