Last active
June 7, 2017 14:38
-
-
Save eon01/26810dee3916a6198296059ad6d4f65f to your computer and use it in GitHub Desktop.
Redirect static website according to the User Agent (Android, iOS)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| var u = navigator.userAgent | |
| if( /iPhone/i.test(u) ) { | |
| //window.location = "http://www.apple.com"; | |
| } | |
| else if (/android/i.test(u)) { | |
| //window.location = "http://www.google.com"; | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment