$(function(){ function responseST(){ var windowWidth = $(window).width(); if(windowWidth <= 768){ window.location.href="/default.html"; } } responseST(); $(window).resize(function(){ responseST(); }); });