The scrolltop tag has no wiki summary.
0
votes
0answers
13 views
jQuery animating scroll top to 0 not working on Windows Phone
I have written a website which has a function that scrolls the users view to the top of the page. The call in question is:
$('html,body').animate({scrollTop:0}, 150, 'swing');
This works fine on ...
-2
votes
1answer
43 views
Very slow jQuery animation
I'm building a vertical ticker for a website. I've made a div of which I animate the scrollTop with jQuery. In between the scrolling I'd like to have a really slow animation downwards. The problem is ...
0
votes
1answer
18 views
.hide and .show displaying all elements and not functioning properly until user scrolls
Hello so I am working on a vertical scrolling site where fixed central image (the main character) hide and show depending on where the user is on the page using .scrolltop. The only problem I have is ...
0
votes
0answers
11 views
Checking if iFrame scrolled to bottom from outside
I've got a tiny issue, and i need to know if this is even doable and if so... a bit of help accomplishing this would be much appreciated.
I've got an iframe, this iframe will display a file.pdf. I ...
0
votes
1answer
29 views
Refresh page once when popstate is fired?
I have a long page which navigates via scrollTop().
Because scrollTop() doesn't work propperly with back buttons of browsers (the browsers ignore it) I want to try and refresh the browser on every ...
1
vote
2answers
48 views
jquery scrollTop function goes to correct position but then jumps back to top of page
I used the jQuery function scrollTop on a list of contact numbers in a click function for each letter. It scrolls to where it is supposed to but then scrolls back to the top immediately.
Here is a ...
1
vote
1answer
49 views
Having difficulty with scrollTop?
So I am building an interface and I have a jQuery on my divs that make them grow in size then makes my wrap div scroll so that the clicked div is displayed on top of the screen.
My problem is that ...
-1
votes
0answers
25 views
compass sticky-footer prventing jQuery scrollTop
When using compass sticky footer in a page, a script that I use to determine the scroll position for a parallax-effect doesn't work. The scroll-event seems to be only registered when the page is ...
0
votes
3answers
64 views
Jquery .scrollTop() and .scrollLeft() on $(document).ready() not working
I'm having a problem with scrollTop() and scrollLeft() on $(document).ready()
I want to to move to centre square on load. I wrote this code, but its not working.
Here is my code:
<!DOCTYPE ...
0
votes
1answer
18 views
Animate my scrollTop function in this code
I have this function to scroll through a div. The function at this point does exactly what I want it do except for one thing. I want the scrolling to happen animated. How can I implement this in this ...
2
votes
1answer
66 views
Scrolling up and down by a set amount of pixels using jQuery scrollTop
I have a list of links in a div with overflow. What I want to happen is that the user can navigate in this menu of links with an up and down button. I want the div to scroll up or down by the height ...
0
votes
4answers
51 views
jQuery .scrollTop(); + animation
I set the page to scroll to top when a button is clicked. But first I used an if statement to see if the top of the page was not set to 0. Then if it's not 0 I animate the page to scroll to the top.
...
0
votes
0answers
31 views
How to properly utilize .scrollTop()
Could anyone please let me know why this is not working?
$(window).scroll(function(){
if($(window).scrollTop() > 100){
alert("Scroll in the y > 100px!");
}
});
I ...
0
votes
2answers
46 views
jQuery not working as expected on page reload
I have written a jQuery-script, which should run after the page has loaded completely.
It should jump down to the end of the page, hide a div and scroll up with an animation after a little delay.
...
0
votes
1answer
32 views
Jquery scrollTop behaving oddly with JqueryUI Accordion
Fiddle Example
Have a list of stores in the Accordion control inside a height constrained div and am trying to scroll the active panel fully into view.
$("#stores").accordion({
heightStyle: ...
0
votes
2answers
55 views
How does scrollTop() work
I was trying out how i would scroll up or down a table and this snippet worked
$('.scroll-down').click(function() {
$('.tableholder').animate({
scrollTop: $('.tableholder').scrollTop() + ...
-1
votes
2answers
27 views
scroll to top of the page using jquery animate
i want to put to the top bottom of the page which should scroll the page to the top. However i want the scrolling process to have animated effect. I think it is possible by using animate but have no ...
0
votes
1answer
37 views
ScrollTop scrolling to wrong location after detach() insertAfter()
I have some jQuery code to move a div to a later location in the flow when the window size is below 767px. All works fine.
I also have some jQuery code to scroll past the main navigation down to the ...
1
vote
0answers
54 views
scrollTop 0 as a conditional statement
I am attempting to either .animate (provided two conditions are true) or (else) .fadeOut an element:
if (window.location.hash == '' && window.scrollTop() == '0') {
//do .animate
if ...
0
votes
0answers
85 views
jQuery scrolltop not moving to the bottom
I am using scrolltop to move to the bottom of the scroll:
// Auto-scroll to the bottom
$("#test_div").scrollTop($("#test_div")[0].scrollHeight);
Here is the div element:
<div ...
0
votes
1answer
20 views
.animate callback in other .animate load 2 times
I want to do this:
scroll to 440 from the top
open #detail with animation
load my id.html inside #detail
made a CSS animation on this HTML content
I want to do this step by step:
step 2/ is ...
0
votes
1answer
121 views
.slidetoggle() toggles once too often after .click() event
This is what I am trying to do for my site (not yet live or I would post a link): I want a div to to be hidden when the page first loads (scrolltop() ==0) and to slideup or slidetoggle when the user ...
0
votes
1answer
45 views
Horizontal website with two content areas
I'm creating a site where there are two distinct areas. The idea is that I click a button and the second content area slides in on top of the first.
Both areas are set to 100% width and are ...
1
vote
3answers
94 views
jquery scrolltop script not working
My ultimate goal is to get my header to switch from a position of relative to fixed when the window gets to a certain point. In trying to get there I came up with this function which doesn't give my ...
0
votes
1answer
47 views
Variable not working with scrollTop
I've been searching for hours and have come up empty.
I'm detecting the users scroll position on beforeunload and saving it to a cookie (using the plugin). After a page refresh the page should now ...
1
vote
1answer
49 views
Scrolling child Section from a section to another
I have 3 sections (first, second and Third), inside the "first" section I have another section called "contenidor_composicio".
What I wanna do is to make "contenidor_composicio" an Scrolling section. ...
0
votes
1answer
27 views
scrollTop jumps to element, how to slow down?
Ok, so I now have this:
$(function(toContact){
$('#contact').click(function(){
$(window).scrollTop($('footer').offset().top);
});
});
But now the screen just jumps to the ...
0
votes
1answer
16 views
Why is the the last child of my navigation in my “ScrollSpy” function returning a value of undefined?
I have a navigation menu we've all seen before, that is adding/removing a class based on the current scroll position.
Everything is working wonderfully so far, however the last "section" both in the ...
-2
votes
1answer
33 views
JQuery scrolltop is scrolling up rather than down
For some reason all of my Scrolltop jquery functions are working great on this page: http://www.nvrentals.net/ -except for the scroll function that's applied to each "Client icon".
Here's my goal: ...
0
votes
0answers
97 views
jquery scrollTop not working in chrome
I am banging my head trying to figure this one out. I have a site with nav that is supposed to scroll down the page to different sections when clicked. It uses jquery scrollTop. It isn't working in ...
0
votes
0answers
44 views
Jquery scrollTop working half way
I am having an accordion content where i am scrolling to the top of the chosen content.
It works when I click on it the first time, but when one accordion is open the selected text does scroll much ...
0
votes
1answer
36 views
vertical scrolling while dragging the element not works properly
I am trying to make the page scroll when we drag element top or bottom of the screen. It working fine when container is inside the screen but unable to scroll when container is bigger than screen. To ...
0
votes
1answer
289 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
61 views
How to test which is scrolling HTML or Body
i try to replace scroll using my own way, but is there any way test which element (HTML or BODY) who able to scroll on browser using javascript (jQuery)?
i try to look both on DOM inspector, both of ...
0
votes
1answer
65 views
Using jQuery to scroll to the top of a clicked div
I've searched the web at length for a solution and come very close, but I'm hoping someone smarter than I can perfect this. When I click a div, I would like the top of said div to scroll to the top of ...
1
vote
2answers
105 views
Why JQuery scrollTop() won't work
I have two divs and each has two classes, hidden and shown ( the classes are required for the responsive web ).
HTML
<!-- buttons -->
<div ...
0
votes
1answer
40 views
Dynamically get value ie scrollTop() and store in an array
I'm trying to get dynamic values ie scrollTop() and and text() - store them in an array and then use them later in a scroll event. So far i have this, which only seems to be pushing the first value. ...
0
votes
1answer
118 views
Animating scrolltop event not working
I'm trying to animate a scrolltop action, when I click on the back to top button however, it snaps back to top without animation, could this be a CSS parameter error?
This is the script:
<script ...
1
vote
0answers
30 views
I have a error with scrolltop jquey
I have a this code
function handleMessage(data) {
var htmlCurrent = $("#private_messages").html();
htmlCurrent += "<b>" + data.from + ": </b>" + data.message+"<br>";
...
0
votes
1answer
39 views
Having some trouble with jQuery scrollTop
ive been researching a ton on this and am coming up at a loss.
Not really sure what is going on, but I can't get this .animate() to animate properly.
I made a JS fiddle outlining the way I have ...
0
votes
0answers
101 views
jQuery - scrollTop not working as expected
CODE:
if(jQuery("#content h1.title").length > 0){
jQuery('html, body').animate({
scrollTop: jQuery("#content h1.title:first").offset().top - jQuery("#sticky").outerHeight()
}, ...
0
votes
5answers
261 views
resize header on scroll
I want to resize the header when the user scrolls and resize it again when the page is at the top. I have this example HTML
<header class="header">
</header>
<section>
...
0
votes
1answer
148 views
Jquery “scrollTop” & “height” .click delay issues
Having a couple of small issues with my code. I've written out a JQUERY sequence where you would click "sign up" and you get scrolled down where a form reveals itself. For now I have a button on the ...
1
vote
4answers
146 views
Automatic scroll the page to a div after 5 seconds
I'm new in javascript, now I'm trying to do that, as the title, I've a page which has a div at the top that is as big as the page with a video in it, followed by several sections like this:
<div ...
0
votes
0answers
178 views
Scroll Top JQuery not working properly in IE
I am using JQuery Scroll Top to automatically scroll up and down. Currently when I click on "contact", it does not go to the bottom but sort of staggers and shakes. Anybody got any ideas as to why ...
1
vote
2answers
124 views
Can I disable / edit the automatic jump-to-top scroll when tapping status bar?
I'm using an app with a tableView that auto-scrolls downward, so tapping the status bar, which would normally jump to the top of the table, causes problems (it begins scrolling but if the auto-scroll ...
0
votes
1answer
77 views
Disable inertia for scroll iPad
How is it possible to make in iPad safari browser stop scrolling after you release your finger? Ie.e to scroll without inertia?
I tried to find solution in jQuery but did not.
0
votes
0answers
30 views
Attempting to scroll a container with arrows double stores the values
I have a container that listes items. When the user press down and up the highlighted area changes accordingly. I also need the container to scroll with the selection. The problem is the animation ...
0
votes
0answers
42 views
Getting the target of each anchor link for animating scroll (jQuery scrolltop)
Can anyone tell me how to edit this code so that it applies to all anchor links with the class "enablescroll", then scroll to their respective target id's?
Right now I have:
<script>
...
1
vote
0answers
58 views
Why is scrolling jumpy right after a jQuery scrollTop?
I'm using
$('html, body').animate({'scrollTop':target});
The animation is fine but when the user attempts to scroll the page "shakes" for a few seconds before it lets the user scroll again.
I ...








