Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated method of calculating #9

Open
nodesocket opened this issue Oct 16, 2016 · 0 comments
Open

Updated method of calculating #9

nodesocket opened this issue Oct 16, 2016 · 0 comments

Comments

@nodesocket
Copy link

nodesocket commented Oct 16, 2016

Wouldn't something like this work? This is not optimized at all, but the logic should be solid.

function browserWidth() {
    if(window && 'innerWidth' in window) {
        var innerWidth = window.innerWidth;
    }

    if(document && document.documentElement && 'clientWidth' in document.documentElement) {
        var clientWidth = document.documentElement.clientWidth;
    }

    if(typeof innerWidth !== "undefined" && typeof clientWidth !== "undefined") {
        return Math.min(innerWidth, clientWidth);
    }

    if(typeof innerWidth !== "undefined") {
        return innerWidth;
    }

    if(typeof clientWidth !== "undefined") {
        return clientWidth;
    }

    if(document && document.getElementsByTagName('body')[0] && document.getElementsByTagName('body')[0].clientWidth) {
        return document.getElementsByTagName('body')[0].clientWidth;
    }

    return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant