Сообщение от Andreysolomon
|
САМЫЙ НИЗ
|
Ширина/высота страницы с учётом прокрутки
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
body{
height: 5000px
}
</style>
</head>
<body>
<script>
var scrollHeight = Math.max(
document.body.scrollHeight, document.documentElement.scrollHeight,
document.body.offsetHeight, document.documentElement.offsetHeight,
document.body.clientHeight, document.documentElement.clientHeight
)
window.scrollTo(0, scrollHeight);
</script>
</body>
</html>