I am trying to redirect to my mobile website. This is the code I a am using in the head code of my homepage (index.html). This supposed to automatically redirect mobile devices to my mobile website, but it doesn't work.
<script>
if (document.location.search.indexOf("skipmobile") >= 0) {
document.cookie = "skipmobile=1";
}
else if ((document.location.hostname.match(/\.mobi$/) || screen.width < 699)
&& document.cookie.indexOf("skipmobile") == -1)
{
document.location = "mobile/";
}
</script>
Can somebody please give me some ideas about possible mistakes or improvements?
This is my website: www.accurateprinting.com