Search found 1 match

by balmerhevi
Thu Nov 10, 2016 2:51 am
Forum: Device Detection Issues
Topic: Newbie needs help with single page mobile redirect script
Replies: 4
Views: 14978

Re: Newbie needs help with single page mobile redirect scrip

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