redirect from mobile to desktop

2 replies
Hi

I am using a redirect script from my main site to my mobile site which is working ok however I would also like to add a script in my mobile site in case anyone finds it on their desktop.

Just using basic html

This is what I am using to go to the mobile site:

<script language=javascript>
<!--
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || ((navigator.userAgent.match(/iPad/i)))
{
location.replace("mobile.html");
}
-->
</script>

Thanks in advance

Quentin
#desktop #mobile #redirect

Trending Topics