Detect and Redirect to mobile version

var urlredirect = window.location.href.replace("www","m"); if( /Android|webOS|iPhone|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) { window.location.href = urlredirect; } // Or use to detect desktop device and redirect if( /Android|webOS|iPhone|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) { } else { window.location.href = "http://yoursite.com.br"; }
A simple script to detect mobile device and redirect to mobile version

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.