モバイル Web サイトを作成中ですが、ユーザーが携帯電話を使用しているかどうかに応じて、ホームページを内部ページにリダイレクトしたいと考えています。
これは、私のindex.htmlの頭にあるものです
<script>
$(window).ready(function(){
function() {
if( window.width <= 770 ){
window.location = "http://dylanstewartcreative.com/print.html"
} else {
window.location = "http://dylanstewartcreative.com/index.html"
}
}
});
</script>