tbtmuse
8/21/2018 - 9:12 AM

Caculate Viewport Width

Accuratly get viewport width wih JS

function viewport() {
    var e = window, a = 'inner';
    if (!('innerWidth' in window )) {
        a = 'client';
        e = document.documentElement || document.body;
    }
    return { width : e[ a+'Width' ] , height : e[ a+'Height' ] };
}