Web/Javascript

redirect for mobile browser

aucd29 2013. 9. 26. 21:34
<script type="text/javascript">
if (navigator.userAgent.match(/iPad/) == null && navigator.userAgent.match(/Mobile|Windows CE|Windows Phone|Opera Mini|POLARIS/) != null)
    location.href = "http://" + location.host + "/m" + location.pathname;
</script>