var deviceIphone = "iphone"; var deviceIpod = "ipod"; var deviceIpad = "ipad"; var uagent = navigator.userAgent.toLowerCase(); //************************** // Detects if the current device is an iPhone. function DetectIphone() { if (uagent.search(deviceIphone) > -1 || uagent.search(deviceIpod) > -1 || uagent.search(deviceIpad) > -1) move(); } DetectIphone(); function move() { window.location = 'http://blakemarymor.com/mobile' }