Tagged Questions
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
1answer
30 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 ...
0
votes
1answer
19 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
67 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
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
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
66 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 ...
0
votes
1answer
121 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 ...
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 ...
1
vote
2answers
71 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
100 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 ...
1
vote
1answer
379 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
80 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
0answers
62 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
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(/^\//, '') == ...
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: ...
2
votes
2answers
357 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
1answer
72 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
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
37 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
0answers
74 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 ...
2
votes
2answers
174 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
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">
...
2
votes
0answers
62 views
How can I time a script to run when a user has scrolled to a particular point on the page?
I have a picture which changes as the user scrolls down (see code below).
At the moment, it starts at the point scrolling begins, but I want it to only start changing when the user scrolls to a ...
3
votes
1answer
350 views
jQuery ScrollTop() function not working
I'm trying to implement the scrollTop() function with a responsive design, but for some reason this code won't work.
The following checks if the page is completely loaded, than it it checks if the ...
0
votes
1answer
90 views
Regarding jQuery's scrollTop. Scroll to different target (other than back to top)
I am currently using jQuery's .scrollTop which works perfectly for moving the user back to the top of the page. And since I really like the effect, I would like to make it possible to scroll to some ...
2
votes
3answers
745 views
jQuery/javascript: background-image, changes on scroll
I'll preface this by saying I am a beginner and my code is probably hillariously messy and/or incoherent, but I'll post it anyway hoping those errors can be caught.
I've searched for a couple days ...
0
votes
1answer
617 views
How to use scrollTop in jQuery when scrolling within a div?
The left is the what I'm trying to scroll...it scrolls just a little bit and then stops. It seems to scroll the same amount each time too.
I am trying to get the scrollTop using jQuery to work on ...
1
vote
1answer
2k views
smooth scroll with javascript onclick
I'm using this link:
<a class="" onclick="location.href='#top'" href="superContent">superContent</a>
It does two things at once:
Jumps user to top of the page
Performs this other ...
0
votes
3answers
1k views
How to get maximum document scrolltop value
I am making some plugin and I need to get maximum scrollTop value of the document.
Maximum scrollTop value is 2001 , but $(document).height() returns 2668 and $('body')[0].scrollHeight gives me ...
1
vote
2answers
175 views
Detect Scroll event while already on top
I have a menu bar on the top of my page which i want to show if i scroll up while already on top. Imagine you scroll up, and while beeing there, you scroll up again, the bar would show.
I have this ...
0
votes
2answers
260 views
scrollTop only measures from top of scrollbar, need entire page
I'm trying to pass the percentage that a user has scrolled on a page as a var (see fiddle). $(document).scrollTop() / $(document.height() * 100 is great for starting at 0 -- the top of the page -- but ...
1
vote
2answers
91 views
jQuery/Javascript - How to subtract old scrolltop from new scrolltop
I've got a seamingly simple question, but I can't seem to figure it out. Every time a user scrolls the scrollTop changes. I want to subtract the old from the new value of the scrollTop. But how do i ...
1
vote
1answer
208 views
ScrollTop when scroll is detected
I want to make a feature like the one on this page. B&O BeoPlay A3
When you scroll down it automatically scrolls all the way to the next page.
I have been playing around with window.pageYOffset.
...
3
votes
2answers
994 views
$(document).scrollTop() always returns 0
I'm simply trying to do something once the scroll position of the page reaches a certain height. However scrollTop() is returning 0 or null no matter how far down I scroll. This is the help function ...
0
votes
0answers
114 views
Stacking Divs on Scroll
I am trying to have one div stack on top of another on scroll. Right now, the second div opacity is set to 0 and once the bottom of the second div is reached, opacity becomes 1. How can I adjust this ...
-1
votes
1answer
273 views
Scroll animation inside anchor links jQuery [closed]
I am trying to make an scroll animation when someone access to an anchor link, like this:
www.miweb.com/section/#anchorLink
And I am doing it with this code, but there's something wrong in it ...
1
vote
1answer
78 views
JavaScript scrolling unpredictable up and down
I've got a big or maybe small problem. I'm trying to scroll my website, so each container slides to a specific position to the top of the website. But, as far as i can see, there is a problem, because ...
1
vote
2answers
166 views
jQuery .scrollTop confusion
Could anyone help me with this JavaScript?
I want a div to show when you scroll down over 1000 pixels, currently it works with the script below but it shows instantly when scrolled.
I tried setting ...
0
votes
1answer
83 views
How to know when element has been scrolled to the bottom
According to the first answer to the question at Stackoverflow, it can be known when element.innerHeight + element.scrollTop is greater than or equal to element.offsetHeight. Shouldn't it be ...
0
votes
1answer
180 views
Javascript code for scroll effect works in Safari/chrome, not firefox/opera
I have a webpage with a nav bar that initially exists 75px or so below the top of the page. I wrote a script that will fix the nav bar to the top of the browser window when the nav bar hits the top of ...
0
votes
1answer
125 views
JQuery Animate functions jumps to the top of screen before animating
I'm relatively new to Jquery so please feel free to slap me if this is obvious. I have this little piece of script which will move a div by it's margin and scroll the browser to the new content. When ...
1
vote
1answer
3k views
Autoscroll div with jQuery to the bottom after appending
I have a div class='messages'. I add date to this div via jQuery.append()
Here are the styles:
.messages {
border: 1px solid #dddddd;
padding:10px;
height: 400px;
overflow-x:visible;
overflow-y: ...
3
votes
1answer
189 views
IE <select> scrollTop
I have found that with a select element in IE (IE7 and IE9 anyway) where the size attribute is specified, using .scrollTop can result in some weird behavior. I'm hoping there is a way around it.
If ...
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 ...
0
votes
2answers
347 views
Move left and right div when you use the scrollTop method
Ciao, io voglio muovere il div a destra e a sinistra in base alla posizione dello scrollbar
Potete aiutarmi?
Hello, I want to move the div to the right or left depending on the position of the ...
0
votes
0answers
317 views
jQuery scroll() Event doesn't work with if/else condition depending on scrollPosition
What I want to achieve. I have a teaser, that's always the full height of the website, similar to adidas.com. Now I want to display a "go to top" button on the page as soon as I scroll down for about ...



