Advertisement
Guest User

Detect mobile screen size and Redirect (if so) to mobile.

a guest
Apr 8th, 2013
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. <script type="text/javascript" language="Javascript">
  2. if (screen.width <= 699) {
  3. document.location = "http://kimerick.com/mobile.html";
  4. }
  5. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement