The scrolltop tag has no wiki summary.
1
vote
2answers
69 views
scrollTop and getSelection()
ok so I have two codes, issues with both. They go hand in hand, so please don't say make two separate post. I need the scrollTop to work after the second code is finished. Thank You
This part is ...
0
votes
2answers
356 views
jQuery ('html.body'),animate not working
I have a page with three divs. Id like to bring each div into view using animate and the offset positions of each div. I can tell that the link attribute is being passed and I am getting offset ...
0
votes
2answers
98 views
How to count scrolled pixels to the left/right with jQuery within a Drupal7 page?
With
$(window).scroll(function () {
console.log($(this).scrollTop());
});
You can count the pixels you are scrolling up or down. But how could I count the scrolling from left to right?
I ...
0
votes
1answer
170 views
Animate scrollTop not working with iScroll
I've posted a few questions on this project I'm working on and this is my latest problem!
I have a click event set up on page A to pass the ID of the anchor tag across to page B so I can use it as a ...
0
votes
2answers
72 views
jQuery ScrollTop multiple links issue
The code below works fine when done this way.
$('#privacyPolicy').click(function(){
$('wrapper, div').animate({scrollTop:$('#privacyPolicy' + 'link').offset().top - ...
0
votes
1answer
239 views
scroll to a div after jquery form submit
i already test all the ways to scroll to a DIV ID but don't work i know is something wrong but i don't know what, this is my jquery script
$("#sub").click( function() {
$("#myForm").validate({
...
0
votes
2answers
216 views
jQuery scrollTop viewport issue. How to add a custom value to position().top
I'm developing a single page wordpress website. As it is a single page one I have used jQuery scrollTop for animating the menu. I want to go to specific div when I click on the corresponding menu link ...
1
vote
2answers
54 views
Unbind a specific function jQuery
What I'm trying to do is unbind a specific function, after it has run once. In the code below it's the window scroll.
$(window).scroll(function(){
if($(window).scrollTop() == viewportheight ){
...
1
vote
1answer
368 views
ScrollTop does not work within DIV with overflow:hidden
I have a DIV, with hidden overflow, the whole CSS block for that DIV looks like this:
.mainContainer .display_box .container .row .col_4 .dPost_box{
position:relative;
height:100%;
width: ...
0
votes
2answers
79 views
Why can't I get scrollTop()
I am trying to make an element appear after a certain scrolling has occurred to do this I'm using scrollTop() but I always get 0.
$(document).on("mousewheel", function(){
...
0
votes
1answer
784 views
jQuery Mobile: .animate({scrollTop}) doesn't work after fixing page transitions
jsFiddle links are at the bottom.
I have a Phonegap app that I have created with jQuery Mobile. The page transitions were really choppy and inconsistent in the native iOS app until I found this ...
0
votes
1answer
148 views
javascript / jquery - page is jerking while setting scrolltop
I am using a light-box in which I am having some trouble with jquery scrolltop() function.
When light box opens it hides the document's scroll bar if it has any and save the vertical scroll position ...
0
votes
0answers
60 views
One-page vertical website, which section are we viewing?
I want to implement a function to load (ajax) the images of each section of a tall vertical 'one-page' website only when the specific section is accessed, either through clicking on the navigation ...
0
votes
1answer
72 views
a fly in the ointment on smooth page scrolling with jQuery
Here is my working code to collapse fieldsets and scroll to their anchor smoothly, but sometimes there is a jump before scroll, what isn't really smooth.
function smoothScrollTo(element) {
var ...
1
vote
1answer
67 views
ScrollTop strange padding
Been working on a personal site lately and using jQuery ScrollTop to animate my content div. But I've ran into a problem.
1st: there is a strange padding in the top of every involved
2nd: the ...
0
votes
1answer
402 views
when scrolling how to keep a div fixed without using position:fixed
I have just created a sidemenu which doesn't scroll with the rest of the page, or rather it repositions itself to top of containing div by using the scroll event, taking the scrollTop value and ...
0
votes
0answers
25 views
ScrollTop is missing its mark?
I have a page with quite a bit of content and I'm using ScrollTop and a nav bar to get people around. I also set the destination on the page based so that when you come you may go to different parts ...
1
vote
4answers
104 views
How do I get a page to slide down to a div when it loads?
So when the page loads, I want it to slide to targeted divs.
var todayStory = $('#day2main');
var initialOffset = 550;
$('.storyContainer').load('story.html', function() {
//story loads fine.
...
0
votes
0answers
113 views
jQuery.animate() works only once after refresh
I have such pat of code:
jQuery('html, body').animate({
scrollTop: $element.find("h2").offset().top -50}, 2000, 'swing', function(){});
After clicking link in menu, page scrolls to one of the ...
0
votes
1answer
118 views
window scrolls top after wrapper gets overflow:hidden via jQuery
I don't want the window scroll to top after my wrapper gets overflow:hidden via jQuery.
$('#shownav').click(function(event) {
$('#wrapper').toggleClass('noscroll');
return false;
});
...
2
votes
1answer
156 views
scrollTop animations choppy
Sorry, my JavaScript skills are limited, but I’m trying to learn.
I am trying to make a smooth scrolling animation with scrollTop calculations where divs placed absolute on top of each other start ...
0
votes
1answer
201 views
Scroll to Element through href conflicts with Bootstrap modals
I have this code that scrolls to specific elements when their ID is put in hrefs (demo here):
$('a[href*=#]:not([href=#])').click(function () {
if (location.pathname.replace(/^\//, '') == ...
1
vote
1answer
233 views
Using jquery .scroll() and scrollTop() to get height within Div
I have a scrollable div and when scroll to 'almost' bottom then will alert something. (for infinite ajax scroll use)
So here is my code, the code is actually working but ONLY when I paste into Google ...
0
votes
2answers
102 views
Modify basic JavaScript ScrollTop function
I have a really basic bit of JavaScript that I'm struggling with. It lets the user click a link and the viewport then moves down to that point in the page. Here is my current tinker: ...
0
votes
0answers
76 views
html scrolltop mystery
I am building a web editor. when large elements are added to the editor, the page appears to scroll down, causing the menu at the top to scroll out of view.
As a test, I am running the function ...
2
votes
0answers
237 views
Improving jQuery On-Scroll Parallax Performance
This question is all about improving the performance of an on-scroll parallax background effect, which currently behaves erratically. I am experiencing a lot of jerkiness across all browsers, ...
0
votes
1answer
84 views
Select target of link
I have a list of six links to on page anchors and I want to animate the scroll to them.
HTML:
<div id="nav">
<table>
<tbody>
<tr>
<td><a ...
0
votes
1answer
181 views
How to show the iOS Safari address bar with javascript?
I'm using jQuery to animate the scrollTop based on changes to the hash in the location. Works great.
The problem is, when I click "Home", I want it to scroll all the way to real top-- INCLUDING the ...
0
votes
2answers
60 views
Changing CSS depending on how much of the page is scrolled
I tried to do this on my own but I didn't get anywhere. All I have is:
if($("body").scrollTop() > 100) {
$("header").css("display", "none");
}
It's within a document ready. What I want to do ...
0
votes
1answer
108 views
How to add padding to scrollTop() function
I have a parent div with a list of div's.
In parrent div I also added fixed positioned div on the top of parent div.
Based on some action I call:
$('#parent').animate({
...
0
votes
2answers
72 views
How to make Divs Appear At Different Times
EDIT: (I'm very new to this kind of coding, so I'm aware that the following code I provided below is inefficient and probably borderline ridiculous. I'm looking for someone who could solve my problem ...
0
votes
0answers
143 views
make superscrollorama style scroll with jquery
I want to style this web page http://johnpolacek.github.com/superscrollorama/
How can i move element with scroll?
this works depend on offset of div.
if(mc=="1"){
$("#parallax1").animate({
...
2
votes
2answers
355 views
set scrollTop and scrollLeft without javascript
I have a question about the scrollTop and scrollLeft properties. I would like to set these properties in my div without using JavaScript (jquery). Is this possible?
My problem is, I have a program ...
2
votes
2answers
133 views
How to scroll page on multiple ID in js
Please check what i did yet http://jsfiddle.net/dUVmh/1/ .
About the animation i want to achieve is that:
When you first scroll down the page then window scroll to #green DIV. After that if you ...
0
votes
0answers
67 views
ruby on rails partial scroll to top
I am rendering a partial into Modal box & displaying error on top in Modal box.
So I want to scroll to top of partial in case of error.
I tried almost all the methods that I came across from ...
0
votes
2answers
102 views
How do I make a fixed div of text change as content changes?
I have a page where my content, which are images, scrolls down and has a fixed title on the side. I require the title on the side which is a fixed div, to change as the images roll up, to describe ...
0
votes
1answer
70 views
How to do scrollTop inside a colorbox?
Basically I have lots of content to be shown inside the colorbox plugin, and I want to scroll into certain part by program.
The colorbox part works fine. The simplified code looks like this (nothing ...
0
votes
1answer
322 views
Dojo equivalent of $(document).scrollTop?
As you know in jQuery $(document).scrollTop() is for checking the scroll position of the window. Can the same function be used in dojo? I used
dojo.query('html')[0].scrollTop()
But in webkit there ...
0
votes
2answers
118 views
Scroll calls ajax at wrong time
I am trying to use the following function to load an ajax call when the user scrolls to the bottom. However, for some reason the function only fires the ajax call when the user scrolls to down and ...
1
vote
0answers
36 views
Not getting all values of scrollTop inside scroll handler?
$(window).scroll(function(){
console.log($(window).scrollTop());
});
Gives console output below when scrolled
2
list (line 392)
7
list (line 392)
12
...
0
votes
1answer
97 views
How can I position a particular Item to “Left Top” corner using UICollectionView scrollToItemAtIndexPath?
I'm using UICollectionView with Custom Layout. In that whenever collectionview getting reloaded, I need {0,0} item should be positioned to Top Left corner of contentView. If I'm setting scroll ...
1
vote
1answer
92 views
When YUI contextmenu appears, scrollbar of table tbody scrolls top unexpectedly on IE8,IE9
I'm seeing a strange behaviour on IE8 & IE9 with YUI contextmenu and scrollable table, much appreciate if someone could tell me how to solve the following issue:
Refer to ...
0
votes
0answers
72 views
JavaScript Scroll Functions Need Adjustment
I have two simple JavaScript scroller functions that I'm calling which work great provided the page loaded has the correct doctype. I don't know enough about doctype (or JavaScript unfortunately) to ...
1
vote
0answers
76 views
conflict with animete scrollTop and scrollHeight
i need help to use scrollHeight in this fuction:
$('header').find('a').click(function(){
hash = $(this).attr('href');
$('html, body').stop().animate({scrollTop: ...
2
votes
2answers
172 views
jQuery scrollTop - animation stucks at the end of moving
i use jquery the scrollTop function to get my scrolling smooth while switching between different anchors.
first, here is the url
the problem
this is my jquery script
"ziel" is just the german word ...
0
votes
2answers
309 views
jquery remove class not working in chrome
this code is working in Firefox but not in Chrome v.23.
When I trace the code in debugger everything works fine but Chrome doesn't change class. Any ideas?
$(document).scroll(function () {
...
0
votes
1answer
312 views
How to dynamically check if elements hit top of window
I have multiple elements below each other. I want to check when these elements hit the top of the window. I know how to do it with a single element, but not with multiple elements.
Single element:
...
1
vote
1answer
613 views
scrollTop() still not working in Chrome
I'm having that annoying .scrollTop() not working problem. I'm trying to get the page to start at the top every time you hit the refresh button. To do this I added the $('html,body').scrollTop(0) to ...
0
votes
1answer
235 views
jQuery javascript - scrollTop animate
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Access-Control-Allow-Origin" content="*">
<script src="jquery.js"></script>
<script type="text/javascript">
...
0
votes
1answer
53 views
Need to scroll from clicked div to top of browser window. Not to top of document, using Isotope Jquery
Please take a look at my jsFiddle here
I am using jQuery Isotope plugin and I am having troubles using their itemPositionDataEnabled to be able to scroll from my clicked item to the top of whats ...

