Tagged Questions
0
votes
2answers
23 views
How to scroll xx pixels or % at once
I am building a website and I want to customize the scrolling. If the user scrolls I want them to scroll down 100% at once like in this website: http://onlinedepartment.nl/
EDIT: I already managed ...
2
votes
0answers
9 views
Using ScrollPath from JoelB - How to end scroll at last image
Im trying to end the scroll path at the last div(image) using this plugin "http://joelb.me/scrollpath/". Does anyone know how I could stop the scrolling at the last image, but allow user to scroll ...
0
votes
2answers
20 views
jQuery target window and a scrollable div?
I'm trying to target the scroll event for both the window and scrollable divs. Is there a way to do this in on statement?
I've tried...
$(window, '.box-scroll').scroll(function() { });
Only way I ...
0
votes
0answers
27 views
Offset not recalculating on scroll in IE
I have started at a new company and they've given me some jQuery that breaks in IE. For some reason the position of the tooltip isn't recalculating once you scroll up or down the page in Internet ...
-1
votes
2answers
29 views
How to make body scroll bar Stylish on the right side for all browsers?
I am creating a template. I want to change the design of the body default scroll bar on right side. I want to make it stylish in such way that it will work in all browsers.
I attached a screenshot of ...
0
votes
1answer
14 views
Open hyperlink after jquery scroll event
I'm looking for a script that automatically opens a hyperlink after a jquery scroll event. This is the script I have so far:
$(document).ready(function() {
$("a.anchorLink").anchorAnimate()
});
...
1
vote
1answer
21 views
jquery show more ellements ..similar with infinite scroll issue
I have more "row" div's and what I try to do is that when the user click on a button 5 more "row's" are show... and when he click again it show another 5 more
also the reverse operation for this!
Do ...
0
votes
1answer
23 views
jquery animation delay when scrolled
im currently struggling with a jquery animation. its just a little animation to change height and opacity on scroll.
the problem is, that the animation doesnt run fluently while i scroll. when i ...
1
vote
0answers
14 views
Jquery Mobile scrolling content height issue
back to coding after a while I am coding a mobile site for my employer using html5 and jquery mobile
Content uses a menu containing two headings:
1-Services (contains several li elements)
2-Products ...
0
votes
4answers
49 views
scroll up and down a div on button click using jquery
I am trying to add a feature to scroll up and down a div based on button click. I was able to do the scroll down part easily, but got stuck wit the scroll up part and one more concern was a scenario, ...
0
votes
2answers
29 views
window on scroll end event not working in IE 8
I am dynamic appending data to div using ajax when window scroll end and for that i have used scroll event as below.
$(window).scroll(function(event){
if ($(window).scrollTop() == ...
0
votes
2answers
73 views
One page website vertical slide-like scrolling [closed]
I have a one page website, with separate vertically stacked sections(slides) on the page. I'm trying to achieve the sticky scrolling methods employed in a site like Fry Reads Onegin, where a scroll ...
1
vote
1answer
56 views
jQuery Click anchor tag prevent page from scrolling to top
I'm doing page transitions with jQuery by fading out content and fading it back in when the page loads but my problem is when I click my link and call my click function and redirecting the page it ...
1
vote
1answer
46 views
jQuery in page back button scrolling
I am looking to create a page that allows use of the back and forwards buttons for content within the page. I have accomplished the basic functionality using jQuery Address as featured at
...
0
votes
0answers
11 views
How to scroll a n-level Menuitems in a div using jquery 1.3.1
I have Menu which is being displayed as a bullet list, <ul>. This is a n-level menu. The menu is very long so I want an up and down arrow on clicking which user can move up and down.
1
vote
3answers
40 views
Fade in/out div scrollTop
I have a floating menu that i want to fade in when you start to scroll down the page, then fade out when you are back at the top of the page. I have got it working without the fade, but im not sure ...
0
votes
1answer
26 views
jQuery scroll to element even if window height is small
I have a page with a logo on top and a form under. There are "Login" and "Join" buttons that when are clicked they expand the respective form. I want when these buttons are clicked to also scroll to ...
0
votes
0answers
20 views
jquery spyScroll events is not working
ontick not gets called when i include this code in my project but it works when i made an indiviual file for this amount of code
$('.SearchContent5').each(function(i) {
var position = ...
1
vote
2answers
38 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 ...
0
votes
1answer
24 views
jQuery function to fade an image on window.scroll event not working
This should be really simple but I just can't figure out why it isn't working.
If the scroll top is within a certain region, then fade out an image. This works if scrolling with the mouse or using ...
0
votes
0answers
27 views
Display bottom shadow on fixed header and top shadow on fixed footer only visible on scroll
I have looked on a solution that works quite well for a fixed header displaying a shadow with transition only on scroll.
Is there a way to also insert a similar fixed footer with changes to the CSS ...
0
votes
2answers
38 views
How to autoscroll to a hidden div when using show hide funciton in a loop
I have a loop that displays tooltips in a sequence down a page. One div will open for a few seconds, then close, then another div will open further down the page, and then close, etc.
How do I ...
1
vote
1answer
32 views
Stop body scroll on button click
So this is my page: http://mediaslave.ca/
What I need is a way of controlling the body scroll. WHen I go to portfolio I have a couple of buttons that pop up a div with the portfolio content. What I'd ...
0
votes
3answers
31 views
jquery how to offset scroll position
I have the following code that scrolls to a certain element:
$('html, body').animate({
scrollTop: $("#maincontent").offset().top
}, 400);
However, I have a fixed navbar at the top and ...
2
votes
2answers
52 views
jQuery algorithm scrolling speed
There are dwo divs #leftPane and #rightPane. #leftPane has position relative and browser set scrollbar acording to its height, meanwhile #rightPane has position: fixed and I add top: -value to it ...
0
votes
2answers
19 views
scroll event has some strange behavior
I have this type of problem.
I have a scroll event which is checking if I have reached end of the page and then it fetches data from the server and that part is working correctly.
Problem that I ...
-3
votes
3answers
51 views
setTimeout() is not working as it should be [closed]
I need to be able to wait certain amount of time when the scroll event occurs.
Code:
$(window).scroll(function()
{
if($(window).scrollTop() + $(window).height() == $(document).height())
{
...
0
votes
1answer
56 views
Is there a NOT (window).scroll function in jQuery?
I'm trying to set up a function that stops working when the user scrolls, is there an oposite to the function below?
$(window).scroll(function() {
//while user is not scrolling do this
});
...
0
votes
0answers
24 views
scroll vertically over iframe
I have an iframe with touch events and click events in a vertically scrollable site.
How do I scroll vertically on the site without scrolling vertically on the iframe on touch devices?
I originally ...
0
votes
1answer
64 views
jquery hide up button when at top of vertical scroll and hide bottom when at bottom
I have a vertical scroll which i want to hide the up button when i'm at the top and hide the bottom button when i m at the bottom. I know there must be a way of doing this with Jquery but I can't ...
0
votes
2answers
45 views
jquery scroll to with toggle
I'm looking to add scroll to function on click event. If click on button scroll down then scroll up.
So far I have this but need to scroll up on click $('#review-link').click(function(e) { });
...
-4
votes
0answers
20 views
jCarousel last-child list width [closed]
Please suggest me on the following.
In jCarousel the last child list get width dynamically depends on the resolution (Size) of the screen. When i try to edit the width in CSS, nothing happens.
...
-1
votes
1answer
36 views
disable scroll with overlay active like Facebook
I was wondering how does Facebook handles the browser scroll when one opens an image for a larger view. It seems the scroll gets disabled but remains visible (the element container). I want to create ...
0
votes
3answers
47 views
iframe containing external wesbite does not fire the onscroll event handler
I understand that in order to fire the onscroll event handler in an iframe normally, the iframe must contain a site with the same domain name as the page that contains the iframe. But is there anyway ...
0
votes
2answers
37 views
Can I have my header's background color fade in as the page scrolls down
First off, here's my website: my website
I was hoping to get some feedback on how to have my header's background color (light grey) fade from 0 opacity to 100% as the page gets scrolled down. Maybe ...
0
votes
1answer
43 views
Fade elements in on scroll with Jquery
I am creating a timeline of events on my website, and I am trying to get each element (with a class '.event') to fade in as you scroll down through timeline. I am having issues - they all fade in ...
0
votes
2answers
42 views
Scroll event doesn't fire unless page moves
I'm looking to get an event to fire when one scrolls "up" from $(window).scrollTop == 0.
If you have the following code:
$(window).scroll(function(){
console.log("scrolling")
});
On a page ...
0
votes
1answer
16 views
Jumping /scrolling to a specific px from top of page using jquery
I created a button that when the user clicks it should scroll the page and start the top of the page from top:600px. I have read about scrolltop() but what i understand is i need to create an id and ...
0
votes
2answers
45 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.
...
1
vote
1answer
48 views
Scrollbottom js not working in Firefox, Chrome, Safari
I've used scrollbottom javascript with JQuery (1.3.2/jquery.min.js) to scroll to a particular div in the below of the page. It is working fine in IE 8 & 9 but it this functionility is not working ...
0
votes
1answer
53 views
trying to get a sticky element with jquery waypoint
So I am trying to create a sticky div that either scrolls up the page or scrolls down the page (onClick) depending on where it is on the page.
I have been tweaking the code for some time and can't ...
0
votes
2answers
55 views
jQuery scroll to ID script only scrolling down
I'm using the following to make any anchor with the class of .jump-link scroll to the ID it's referencing in the href attribute:
// Scroll to ID
$('.jump-link').click(function () {
var el = ...
0
votes
0answers
39 views
Html - Overflow:hidden still takes space
I have a problem with a scrollable div. There's a div acting as a scrollable container (using a jquery plugin). The container has an overflow:hidden style. it works as expected, but i noticed that the ...
3
votes
2answers
93 views
Stop page from scrolling if hovering div [duplicate]
I have a div that is scrollable, but whenever you reach the bottom/top of it, it begins to scroll the entire page. That could be annoying for users who scroll fast, and then the entire page starts ...
1
vote
1answer
68 views
Add active state to navigation in links as user scrolls
I'm unsure how possible this is, but I thought I'd give it a shot.
I have a simple scroll through site, each with separate sections as you scroll — clearly defined by colours. I have some fixed ...
0
votes
2answers
29 views
Back to Top link to only show on non-mobile devices
We have some simple JQuery that shows a back to top link when the user scrolls down to a certain page (and beyond) of the page.
$(window).scroll(function(){
if ($(this).scrollTop() > 100) {
...
0
votes
0answers
71 views
jQuery Scroll event not firing inside a Tiny Scrollbar div
I'm using Tiny Scrollbar plugin to do a little notification box, like facebook does.
Here's the html so far
<div id="notificationBox">
<div class="contentBox scrollbarNotif">
...
0
votes
1answer
63 views
Horizontal scroll content
i am trying to do a website in wich there is a section where the content has to scroll horizontally as you click on the menu buttons, it also has direction nav, i think i got it with the direction nav ...
0
votes
2answers
67 views
jQuery - .on scroll not working on newly added div
I have a button "Window Add" and after clicking it, a new div should be added to the dom. The scroll event on the new div does not want to get attached to it and show the alert when scrolled. I know ...
0
votes
0answers
66 views
initialization Smooth Div Scroll in .load() callback
Here is my project http://tusko.crystalstudio.me
I have two parts of Your plugin initialization.
So, here is my code:
//define mobile user
var mob = navigator.userAgent.match(/Android/i) || ...



