topical media & game development
#javascript-code-17-pageHeight.js / js
// Returns the height of the web page
// (could change if new content is added to the page)
function pageHeight() {
return document.body.scrollHeight;
}
// Returns the width of the web page
function pageWidth() {
return document.body.scrollWidth;
}
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.