How to Redirect URL according to Mobile Device Using JavaScript
add this javascript in <script> tag it will automatically redrect
towards mobile content
<script type="text/javascript"> <!-- if (screen.width <= 699) { document.location = "mobile.html"; } //--> </script>
Thnaking you-
add this javascript in <script> tag it will automatically redrect
towards mobile content
<script type="text/javascript"> <!-- if (screen.width <= 699) { document.location = "mobile.html"; } //--> </script>
For iPhones/iPods Specifically
Thnaking you-
Post a Comment