font_width(); $(window).on("resize", function(){ font_width(); });
function font_width (){ var clientWidth = document.documentElement ? document.documentElement.clientWidth : document.body; if (clientWidth < 768) { var font = clientWidth*40/750 > 40 ? 40 : clientWidth*40/750; $("html").css("font-size", font+"px"); } else { $("html").css("font-size", "16px"); } }