5 function onloadScrollTop() {
6 // Scroll until we see the grid item's border but not the grid item
7 window
.scrollBy(0, -150);
11 <body style=
"height: 1000px" onload=
"onloadScrollTop()">
13 <div style=
"height: 200px; width: 100px; background-color:red">
14 <div style=
"height: 100px; width: 100px; background-color: orange"></div>
15 <div style=
"height: 100px; width: 100px; background-color: green"></div>
18 <div>There should be a
100px wide green box (grid item's border) above
</div>
21 window
.scrollTo(0,300);