9 Sept 2020

Redirect mobile devices

 Redirect mobile devices.


          If you want your website to be redirected to mobile, I mean that when someone runs your website on their mobile, the website will be redirected to another page, the page that you have created just for mobile friendly. There is a very simple and effective trick.

 

For android version. 

 

<script type="text/javascript"><!--if (screen.width <= 699) {

document.location = "mobile.html";}//--></script>


Replace the  “mobile.html”  with your own “HTML” .

 

For Iphone/ipad. 


<script language=javascript><!--

if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))  location.replace("http://url-to-send-them/iphone.html");}--></script>


No comments:

Post a Comment