I am setting up a page redirect to a low res version of a web page suitable for a mobile device, is this the best way to do it?
Keith
Code:
<script type="text/javascript">
if(screen.width < 600){
window.location = "[URL unfurl="true"]http://www.lowresversion.co.uk";[/URL]
}
</script>
Keith