Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 8th, 2012  |  syntax: None  |  size: 0.28 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Javascript mobile detection [closed]
  2. if (screen.width <= 699) {
  3.    alert document.location = "/mobile";
  4. }
  5. else {
  6.      alert ("Thanks!");
  7. }
  8.        
  9. if(/iphone|ipad|ipod|android|blackberry|mini|windowssce|palm/i.test(navigator.userAgent.toLowerCase())
  10. {
  11.     document.location = "/mobile";
  12. }