function isMobile() { if (/(.*Android|.*iPhone|.*X11.{1}.*Linux*)/.test(navigator.userAgent)) { location.href = "/social_mobi.html"; } } isMobile(); $(window).resize(function() { let ww = $(window).width() if (ww < 768) { location.href = "/social_mobi.html"; } });