The scrollTop method. An element's scrollTop is a measurement of the distance of an element's top to its topmost visible content.

learn more… | top users | synonyms

33
votes
5answers
10k views

Animate scrollTop not working in firefox

This function works fine. It scrolls the body to a desired container's offset function scrolear(destino){ var stop = $(destino).offset().top; var delay = 1000; ...
3
votes
2answers
2k views

Call Scroll only when user scrolls, not when animate()

I have a few links across the page with the purpose of "going to the top", accomplished by scrolling the page to the top with a nice animation. I've noticed that sometimes while the page is scrolling ...
5
votes
2answers
2k views

jQuery scrollTop inconsistent across browsers

In Chrome and Safari, $("body").scrollTop(1000) goes where expected. In IE and FF, nothing happens. In IE and FF, $(window).scrollTop(1000) works, but they go to different places. It also works in ...
0
votes
2answers
880 views

ScrollTop really jerky in Chrome

I'm using the scrollTop function to create a parallax scrolling website, binding the scrollTop function to different anchors throughout my website. The problem I'm having is that the scrolling ...
2
votes
1answer
823 views

scrollTop() and then div fixed

one short question. I'm trying to change the css of a div when scrolling. This is my code but unfortunately it won't work :( $(document).ready(function() { $(window).scroll(function () { ...
2
votes
3answers
6k views

jquery scrollTop does not work in IE8

I'm trying to scroll the page based on the hash on the url. Here's my code: var hash = window.location.hash; $(hash).scrollTop(); This doesn't to anything. So what am I doing wrong? And another ...
31
votes
3answers
35k views

$(window).scrollTop() vs. $(document).scrollTop()

What's the difference between: $(window).scrollTop() and $(document).scrollTop() Thanks.
5
votes
3answers
4k views

scroll UITableView to top when tapping top of the screen

i inserted UITableView inside another ViewController's view. but when i tap the top of the screen; the table view doesn't response to auto scroll to top. i tried : [self.tableView ...
8
votes
3answers
4k views

Choppy/Laggy scroll event on Chrome and IE

I am trying to have a content block always be shown to the user, even if he scrolls way down the page. He should also be able to scroll up and down the content block. Here is a fiddle with a ...
11
votes
3answers
6k views

get height for a div with overflow:auto;

i have a div with height:100px and overflow:auto the content is dynamic. i want scroll the div in the bottom i tried with $("#chat_content").scrollTop($("#chat_content").height()); but if the ...
13
votes
2answers
616 views

Does WebKit have a clipping bug?

Given a region where the line-height and any margins are n, and the region has a height that is a multiple of n, and the scrollTop is increased by multiples of n I find that I get the result I expect ...
3
votes
2answers
9k views

How to scroll to top of a div using jquery?

I have a gridview inside a div... I want to scroll to top of the div from the bottom of the div using jquery... Any suggestion.... <div id="GridDiv"> // gridview inside... </div> My ...
1
vote
2answers
2k views

can't use animate scrollTop with jscrollpane?

I'm using the following jQuery function to smoothly scroll to page sections: function scrollTo(element) { //$('html, body').animate({ // before the addition of jscrollpane ...
3
votes
1answer
670 views

Get vertical position of scrollbar for a webpage on pageload when the url contains an anchor

I am using jQuery's scrollTop() method to get the vertical position of the scroll bar on pageload. I need to get this value after the anchor in the url is executed (ex url: www.domainname.com#foo). I ...
3
votes
3answers
9k views

Jquery: animate page down 100px from current screen position

I need to animate a scroll from the current screen position, down a set number of pixels. $('html,body').animate({ scrollTop: $(window).position().top += 100 }) or? ...
4
votes
1answer
6k views

jQuery add and remove $(window).scroll(function()?

How can I remove and then add the $(window).scroll? I need to store a variable and reuse it after some event. // here i store my var $(window).scroll(function(){ myScroll = $(window).scrollTop() ...
3
votes
1answer
144 views

Why jQuery has to receive 2 objects: body & html when scrolling whole page with animation?

In all the tutorials I found around the web on animating scrolling of the page with jQuery, I found that most of them are using the following code to do that: $("html, body").animate(.... I was ...
2
votes
1answer
324 views

Scroll to last row having class in jQuery Dialog on open

Populating a jQuery UI Dialog with a longish table, I would like to have it scroll to the last row in the table having a specific class. I found two other posts almost identical to this here, and ...
2
votes
3answers
3k views

Cross-Browser method for setting ScrollTop of an element?

For example I have I a div tag with the scroll bar on the right of the div tag. I want to show the div with the last line, so I have this: document.getElementById("divscroll").scrollTop = 250000; ...
1
vote
3answers
2k views

Snap To Top of Div/Element on Scroll

Can anyone recommend a "best" approach for snapping the scrollbar to the top of an element when scrolling down a page? For example, if my layout was as follows: <div id="section-one" ...
1
vote
1answer
322 views

How to prevent page from scrolling to an iframe on load?

I have an iframe in my page and when I load the page, the page scrolls to the start on the iframe which is about 200px from the top of the page. If I change the iframe to a div then the page loading ...
1
vote
3answers
2k views

jquery animate scrolltop callback

I have the following jquery that scrolls the page to the top, then performs a callback function. The problem is that even if the page is already at the top, it still waits for the '1000' to elapse ...
1
vote
4answers
5k views

Firefox scrollTop problem

I have a problem with Firefox scrollTop value and onscroll event. This works great in IE, Safari and Chrome but Firefox seems to lag. I tried to update some background position with the onscroll ...
0
votes
1answer
821 views

Vertical scrolling using jQuery

I am trying to implement Vertical Scrolling. When clicking on the 'down'-div it will move 1 div up and when clicking on the 'up'-div it will move 1 div down. But it only works on the first click. The ...
0
votes
1answer
512 views

Shrink header height by scrollTop value

Howdey! Simple problem: I've a fixed header, the height shrinks down based on the window scrollTop-value to the half of its height. What I have so far: HTML <div id="header"> <img ...
0
votes
1answer
1k views

Why are scrollTop, pageYOffset, and height all not working?

I am trying to detect if there is a vertical scrollbar or not on the browser window (if the content exceeds the window height and overflows). I have tried document.body.scrollTop, window.pageYOffset, ...
0
votes
4answers
3k views

The same old issue, .scrollTop(0) not working in Chrome & Safari

First, let me point out, i've googled and even looked at answers on here like this and this, however, I'm still yet to find a working solution for my case. I've designed a page that has several fixed ...
0
votes
1answer
492 views

jQuery .load callback / scrolling / CSS overflow

I'm working on a very simple jQuery based chat room (to be used in an introductory workshop). The current chats are displayed in a div set to 400px high and overflow auto. jQuery's "load" function is ...
0
votes
1answer
1k views

JQuery page scroll issue with fixed header

I'm using a line of JQuery to direct my users to the right part of my page when a link is clicked using the below code: $('html, body').animate({ scrollTop: $("#cell_" + scrollTo).offset().top }, ...