Advertisement
Guest User

Untitled

a guest
Sep 17th, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <script type="text/javascript">
  2.  
  3. var ua = navigator.userAgent.toLowerCase();
  4. var isAndroid = ua.indexOf("android") > -1;
  5. var isWin8 = ua.indexOf("windows nt 6.2") > -1;
  6. var isBB = ua.indexOf("bb10") > -1;
  7.  
  8. if (navigator.userAgent.indexOf('iPad') != -1) {
  9. document.location = "http://url for ipad";
  10. }
  11.  
  12. else if(isAndroid) {
  13. window.location = 'https://url for android';
  14. }
  15. else if(isWin8) {
  16. window.location = 'http://url for win8';
  17. }
  18.  
  19. else if(isBB) {
  20. window.location = "http://url for bb";
  21. }
  22.  
  23. else
  24. {
  25. window.location = "http://url "
  26. }
  27.  
  28. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement