We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Wouldn't something like this work? This is not optimized at all, but the logic should be solid.
The text was updated successfully, but these errors were encountered: