Document.width

Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.

Note: Starting in Gecko 6.0, document.width is no longer supported. Instead, use document.body.clientWidth. See element.clientWidth.

Returns the width of the <body> element of the current document in pixels.

Not supported by Internet Explorer.

Syntax

JavaScript
pixels = document.width;

Example

JavaScript
function init() {
    alert("The width of the document is " + document.width + " pixels.");
}

Alternatives

JavaScript
document.body.clientWidth              /* width of <body> */
document.documentElement.clientWidth   /* width of <html> */
window.innerWidth                      /* window's width */

Specification

HTML5

See also

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/document/width

API Document HTML DOM NeedsBrowserAgnosticism NeedsBrowserCompatibility NeedsSpecTable Property Reference Référence