Home › Forums › Archived Forums › Mobile View › redirect to mobile page › Re: redirect to mobile page
November 10, 2016 at 06:46 UTC - Views: 6
#29429
Participant
The following Javascript code will help you to redirect to your mobile version.
<script type=”text/javascript”>
if (screen.width <= 699)
{
document.location = “mobile/mobilepage.html”;
}
</script>
More…Mobile Redirect
Hevi

