- Javascript mobile detection [closed]
- if (screen.width <= 699) {
- alert document.location = "/mobile";
- }
- else {
- alert ("Thanks!");
- }
- if(/iphone|ipad|ipod|android|blackberry|mini|windowssce|palm/i.test(navigator.userAgent.toLowerCase())
- {
- document.location = "/mobile";
- }