Сообщение от dexteron
|
Как сделать, чтобы при загрузке страницы сайта она сразу перемещалась на определенное расстояние от верха окна браузера.
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
body,
html {
height: 100%;
}
#container {
height: 150%;
}
</style>
<script type="text/javascript">
$(window).load(function(){
$(window).scrollTop(50);
});
</script>
</head>
<body>
<div id='container'>
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
</div>
</body>
</html>