turkeypockets
Junior Member
- Apr 1, 2016
- 111
- 29
Ill make a video later or tomorrow, ive been up working on tax stuff all night so im pretty burnt
Then it works. Visit on desktop nowIt just redirects to yahoo lol
<script>
var mobilePath = 'http://yahoo.com';
// if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
// window.location = mobilePath;
//}
//alert(navigator.userAgent);
if(/iPad/i.test(navigator.userAgent)) {
//if (screen.width < 720){
// window.location = mobilePath;
//}
}else if (/webOS|iPhone|iPod|BlackBerry|IEMobile|Opera Mini|Mobile/i.test(navigator.userAgent)) {
window.location = mobilePath;
} else if(/Android/i.test(navigator.userAgent)) {
//if (screen.width < 720){
// window.location = mobilePath;
//}
}
</script>