Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
146
rated 0 times [  149] [ 3]  / answers: 1 / hits: 60066  / 9 Years ago, thu, march 26, 2015, 12:00:00

if you try to get a top offset from a list element within a parent, and that parent is not positioned at the top, you will get a wrong value.



http://jsbin.com/yuxacuduna/1/edit?html,css,js,console,output



Try removing the margin-top on the .container element and you will see it will work.



What is the solution for this problem?


More From » jquery

 Answers
22

Your question:



What is the solution for this problem?



I suggest you to position the .container to relative:



.container{
margin-top:100px;
background:yellow;
height:600px;
width:300px;
overflow-y:auto;
overflow-x:hidden;
position:relative; /*<---add this*/
}


and within your script use .position().top, it will make your life easier:



$('.container li:nth-child(7)').css(background, red);
$('.container').animate({
scrollTop: $('.container li:nth-child(7)').position().top
});





.offset().top:

Description: Get the current coordinates of the first element in the set of matched elements, relative to the document..



.position().top:

From the docs:



Description: Get the current coordinates of the first element in the set of matched elements, relative to the offset parent.



.position().top is calculated from the top to the parent if parent is relatively positioned.





$(function() {
$('.container li:nth-child(7)').css(background, red);
$('.container').animate({
scrollTop: $('.container li:nth-child(7)').position().top
});
});

html,
body {
margin: 0;
padding: 0;
}
.container {
margin-top: 100px;
background: yellow;
height: 600px;
width: 300px;
overflow-y: auto;
overflow-x: hidden;
position: relative;
}
.container ul {
margin: 0;
padding: 0;
list-style: none outside none;
}
.container li {
background: blue;
display: block;
height: 150px;
width: 100%;
padding: 10px;
margin-bottom: 5px;
}

<script src=https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js></script>
<div class=container>
<ul>
<li>asdasd</li>
<li>asdasd</li>
<li>asdasd</li>
<li>asdasd</li>
<li>asdasd</li>
<li>asdasd</li>
<li>asdasd77</li>
<li>asdasd</li>
<li>asdasd</li>
<li>asdasd</li>
<li>asdasd</li>
</ul>
</div>




[#67307] Tuesday, March 24, 2015, 9 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
karolinab

Total Points: 644
Total Questions: 98
Total Answers: 117

Location: Vanuatu
Member since Mon, Dec 7, 2020
4 Years ago
;