The scrolltop tag has no wiki summary.
0
votes
2answers
369 views
Using jQuery scrollTop with Wordpress?
So, I'm trying to use the jQuery animate to make a "scroll to top" button with a wordpress theme. I've been at this for a few hours with no luck. Here's the snippet of the JS:
< script type = ...
0
votes
2answers
206 views
jQuery fixed item when scrolling reset when at top?
I have a navigation menu in the header at the top of the screen that changes color and adds fixed positioning when the user scrolls down the screen to keep it in place but I would like this to reset ...
1
vote
1answer
373 views
jQuery ScrollTop cannot scroll down
On clicking a link I'm using ajax to refresh the contents of a div, and then using scrollTop to move to the top of the content.
The problem is, for a second or two after the animation, if you try to ...
0
votes
3answers
298 views
Add an anchor to scrollTop
Is it possible to add an anchor to this script? Instead of scrolling all the way to the top, I would like to scroll to a particular anchor in the page.
Here is the current script:
if (isError) {
...
1
vote
3answers
104 views
Need to incorporate animate function only once in script
Instead of pasting $('html, body').animate({ scrollTop: 0}, 2500); for every input, can I write it only once to work for all inputs?
Whats happening is my screen is scrolling to the top several for ...
4
votes
1answer
546 views
IE7/IE8 takes some time to return the correct scroll position
For displaying a dialog, I need to know the current scroll position of the window. This is done within a $(document).ready block of jQuery.
Internet Explorer, however, breaks things when having to ...
0
votes
1answer
900 views
How to on page load start at bottom and then auto scroll to the top?
I am using DIV tags instead of iFrames FYI. I want to show the visitor all of the content that is available. I found this code that will auto scroll on page load to the bottom and then back to the ...
0
votes
2answers
188 views
What is wrong in this javascript code?
What is wrong in this code?
function FloatMenu() {
var scrollAmount = $(document).scrollTop();
var newPosition = menuPosition + scrollAmount;
if ($(window).height() < ...
8
votes
5answers
5k views
jQuery - ScrollTop without animation
how can i use the scrolltop without an animation
this code works
var offTop = $('#box').offset().top;
offTop = offTop-43;
$('#mainCt').animate({scrollTop: '+=' + offTop + 'px'}, 400);
and here ...
0
votes
1answer
955 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, ...
3
votes
3answers
205 views
printing the scroll height during a jQuery scrollTop animation
Can jQuery animate send the scrollheight as it animates or should I create a separate function, and if the latter, how would that function go?
http://jsfiddle.net/A2s9Q/
0
votes
1answer
329 views
jQuery - scrollTop() after an anchor jump
I am wondering if its possible to get $(this).scrollTop() value after an anchor jump. Firefox manages it... however IE returns 0 as it retreives the value before page can jump to the anchor point (on ...
1
vote
1answer
221 views
Scrolling/Scrollbar Locks After Scrolltop Animation
I've got a few anchors that link to specific sections (using hashtags) within the page, and ones that scroll to the top or bottom of the document window.
$("html, body").animate({ scrollTop: ...
1
vote
1answer
293 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
2answers
1k views
ScrollLeft and ScrollTop on Ipad using animate chain (jQuery)
I have been breaking my head on understanding why on every latest browser my code works, and not on iPad, well it works only half way.
First, here is the site I am trying to make work : ...
0
votes
1answer
273 views
jQuery scrollTop() for navigation
I'm trying to make a navigation for my website and would greatly appreciate any assistance. I'd like to use a smooth scroll to the desired div.My website will be one page, so I need the nav link to ...
0
votes
1answer
345 views
Javascript - Scroll page to last position of previous page when the back button is hit
I decide to make my own "neverending" scroll page which suits exactly my needs rather than making comfortable with some extensive classes that could not have to work exactly the way I would like them ...
0
votes
1answer
352 views
Hidden content slowly scroll up and then scroll back down with jQuery [closed]
Here is my content http://jsfiddle.net/Ux7Zt/1/
I want to have my content wrapped in the .testimonial-wrap class scroll up slowly so people can read through the content. And then slowly scroll the ...
3
votes
1answer
119 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 ...
1
vote
3answers
70 views
Is there a way to target an item based on the closest attribute which contains an integer?
Here's the basic idea of what I'm trying to accomplish, I have a list...
<ul>
<li position="400">Item 1</li>
<li position="510">Item 2</li>
<li position="590">Item ...
1
vote
1answer
182 views
Page scrolls up when I fadein a div and fade out another div
In http://albertanglada.es
I have this:
$('#ultimas,#populares').click(function(e) {
e.preventDefault();
$('.grupo').hide();
var id= 'div' + $(this).attr('id');
$('.grupo#'+id).fadeIn();
});
...
4
votes
1answer
3k views
Run ScrollTop with offset of element by ID
Trying to make the browser scroll to a specific ID with an added offset -
$('html, body').animate({scrollTop: $('#contact').offset().top}, 'slow');
What I need to do is to set the offset by -100px. ...
2
votes
2answers
877 views
Jquery scrollTop not working with slideToggle and hidden div
I have a div hidden and when a link is clicked it toggles the content to slide out. Unfortunately I cannot get it to scroll down to the Top of the div when it is shown at the very bottom of the page. ...
0
votes
2answers
3k views
jquery animate scrollTop and scrollLeft not working on ipad simultaneously
I have the following snippet of code that animates my page to a specific point on my frontpage. This is working perfectly on all browsers and on android tablets.
if($("body").hasClass("mobile")){
...
0
votes
2answers
265 views
How do I call a function on each <li> when they near the top of the viewport?
Please help. I'm losing sleep over this one! :)
I have a list of short posts; call them quotes if you will. I have a fixed position header that is 200px high with a transparent background. I need ...
0
votes
0answers
242 views
jQuery div slides down the page but allows the user to scroll down infinitely extending the page
Hi people!
$(function() {
var offset = $("#sidebar1").offset();
var topPadding = 10;
$(window).scroll(function() {
if ...
0
votes
1answer
434 views
How to add css style if user scroll page over 112px
I would like to know how is possible to assign a css rule to an element only if current scroll position is greater than 112px..
I've tried this but it doesn't work:
<script ...
0
votes
1answer
435 views
scrollTop animation works in Safari, but not Chrome
This is strange. It works fine in FireFox, Safari and IE, but in Chrome the animation just doesn't work. It jumps straight to the top with no animation.
script:
<script>
...
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
2answers
2k views
JQuery animate scrollTop Not Working Properly
The following JQuery code scrolls the page to the first error in the form:
$('html,body').stop().delay(500).animate({scrollTop: $errors.filter(":first").offset().top -30},'slow');
However, if I ...
0
votes
1answer
811 views
Mirco-jumps when using scrollTop jquery animation
I have a problem with the scrollTop jquery animation.
It micro-jumps right before the animation. The heavier the content is, worst it is.
I don't understand why does it do that...
Below, a sample of ...
0
votes
1answer
749 views
JQuery animate scrollTop Container
I have the following snippet to scroll my form to the first error:
$('html,body').stop().delay(500).animate({scrollTop: $errors.filter(":first").offset().top -30},'slow');
The full block at the end ...
2
votes
1answer
2k views
Setting “scrollTop” for overflowing element via HTML/CSS (without javascript)
Suppose I have the following html:
<div style="width:200px;height:200px;overflow:scroll">
...
</div>
If the stuff in this div ends up overflowing, the most popular way to change the ...
2
votes
2answers
4k views
Accounting for a fixed header with animate.scrolltop and (target).offset().top;
This should be a pretty basic question, but i've thrown most of my morning at it, and at this point I'm close to throwing in the towel. I have not even a little bit of js foo -- but I found a nicely ...
1
vote
1answer
949 views
Scrolling down to a position with jQuery
Hi just a quick doubt that's driving me mad.
I'm trying to automaticly scroll down to an button when this button is clicked.
I've got the y-index value of my button saved on a variable called ...
0
votes
1answer
93 views
Scroll jarring when using jQuery scrollTop
I am using a very simple piece of code to animate a scroll to the top of my page. The code is as follows:
$(document).ready(function(){
$('div#top').hover(function(){
$('html, ...
4
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
1answer
293 views
scrollTop=0 browser compatibility issue
I am creating a simple website that has a sidebar with buttons that link to different pages that load in an IFrame to the right. I want the pages to always load at the top- therefore added this code ...
5
votes
3answers
3k 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 ...
0
votes
3answers
935 views
Jquery Animated Back to Top
I'm currently trying to make a button which will take the user back to the top of the page, but animated. Making the page scroll back up to the top when the button is clicked. I did a search on here ...
0
votes
1answer
759 views
ScrollToFixed plugin creating mystery div that ruins page layout?
I have just used the ScrollToFixed plugin by bigspotteddog
( https://github.com/bigspotteddog/ScrollToFixed )
on my website
( http://faiththeagency.com/easyphone/frequently-asked-questions.php ) ...
2
votes
0answers
206 views
Webkit scroll position lost
On Webkit re-rendering any of an outer containers (div in my case) child elements or changing on of these childs display attribute from/to display:none/block/inline/inline-block whatsoever, courses ...
0
votes
1answer
245 views
following header on page scroll not following
i am trying to have the tipical menu following the webpage scroll,
i wanted to change the position relating the marginTop with the page scroll,
$(document).ready(function(){
...
0
votes
2answers
707 views
Scroll to a specific div that's not in view
I am trying to scroll to the top of a specific div container. Currently my code is instead scrolling the page content into view. Anybody has an idea how what's wrong? : ) Here's the code:
var ...
0
votes
1answer
947 views
Scroll content vertically with jquery.animate and jquery.scrolltop
I am working on this plugin which scrolls an element to show the hidden content.
But I cannot make it right, for instance,
when I scroll the content to reach numbers 7,8 and I want to scroll back ...
0
votes
3answers
597 views
How to increase an integer number in `animate()` on each click
How can I increase an integer number in animate() on each click?
For instance,
html,
<ul class="items-thread">
<li class="item-thread">1</li>
<li ...
0
votes
0answers
1k views
Jquery scrollTop
If someone could help me find the solution of my problem. The jquery code is made so that when i click on my menu items it will scroll to that section of the site. But the only problem is that it only ...
3
votes
2answers
5k views
jQuery animate scrollTop
I have quite a few section tags in a div with an overflow set to hidden. The code is along the lines of this:
<div id="viewport">
<section>
content
</section>
<section>
...
4
votes
2answers
2k views
iPad using scrollTop with fixed navigation not functioning properly. Only works first time
I am developing a single page site with vertical scroll for navigation. I have a fixed position nav bar and my scrolling content is supposed to go up and down while being floated right of the ...
1
vote
2answers
1k views
Jquery: Scroll to last <li>
I'm using the following to scroll to the last <li> in an unordered list:
$("html,body").animate({scrollTop: $('ul#cart-items li').offset().top});
How can I change this to scroll to the last ...

