Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Share Openly</title>
  4. </head>
  5. <body onload="redirectUser()">
  6. </body>
  7. </html>
  8. <script>
  9. function redirectUser()
  10. {
  11. var uagent = navigator.userAgent.toLowerCase();
  12. if (uagent.search("iphone") > -1)
  13. window.location = "http://google.com";
  14. else
  15. window.location = "http://wikipedia.com";
  16. }
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement