Scrolling refers to the continuous sliding of content across a display screen.

learn more… | top users | synonyms

130
votes
12answers
89k views

Making TextView Scrollable in Android

I am displaying text in a textview that appears to be too long to fit into one screen. I need to make my TextView scrollable. How can i do that? Here is the code final TextView tv = new ...
2
votes
1answer
1k views

Setting CSS value limits of the window scrolling animation

I have a <div id='map'> map that slides as the user scrolls down. However, it seems to let the map scroll forever, never letting the user actually reach the bottom of the page (there is a footer). ...
32
votes
9answers
47k views

How to programmatically disable page scrolling with jQuery

Using jQuery, I would like to disable scrolling of the body: My idea is to: Set body{ overflow: hidden;} Capture the current scrollTop();/scrollLeft() Bind to the body scroll event, set ...
18
votes
7answers
13k views

android: ViewPager and HorizontalScrollVIew

I have a HorizontalScrollView inside my ViewPager. I set requestDisallowInterceptTouchEvent(true); for the HorizontalScrollView but the ViewPager is still sometimes intercepting touch events. Is ...
55
votes
7answers
32k views

How do I scroll a row of a table into view (element.scrollintoView) using jQuery?

I'm dynamically adding rows to a table using jQuery. The table is inside a div which has overflow:auto thus causing a vertical scrollbar. I now want to autoscroll my container div to the last row. ...
45
votes
6answers
34k views

How can I check if a scrollbar is visible?

Is it possible to check the overflow:auto of a div? For example: HTML <div id="my_div" style="width: 100px; height:100px; overflow:auto;" class="my_class"> * content </div> JQUERY ...
32
votes
4answers
14k views

Detect if a page has a vertical scrollbar?

I just want some simple JQ/JS to check if the current page/window (not a particular element) has a vertical scrollbar. Googling gives me stuff that seems overly complex for just this basic feature. ...
5
votes
4answers
15k views

jQuery scroll() detect when user stops scrolling

Ok with this.. $(window).scroll(function() { $('.slides_layover').removeClass('showing_layover'); $('#slides_effect').show(); }); I can tell when someone is scrolling from what i ...
1
vote
1answer
1k views

Sluggish zoom and scroll with GridView in Android

I'm creating a custom view derived from GridView. This contains a custom ImageView with zooming and panning functionality. Scroll and zoom functionality is sluggish. If the parent view is the same ...
16
votes
7answers
8k views

prevent Scroll “bubbling” from element to window

I have a modal box window (pop-up) that contains an iframe, and inside that iframe there's a div that is scrollable. When I scroll the iframe's inner DIV, and it has reached its top or bottom limit, ...
5
votes
5answers
5k views

WP7 Auto Grow ListBox upon reaching the last item

I'm trying to achieve an effect where more items are appended to the list when the user scrolls down to the last item. I haven't found a way to determine if the user has scrolled to the end of the ...
11
votes
2answers
17k views

How to Programmatically Scroll Android WebView

I'm trying to programmatically scroll a WebView to the location of a particular element in the DOM tree. But so far I haven't been able to get the WebView to respond to scroll requests. I've tried ...
18
votes
4answers
18k views

How to scroll to bottom in a ScrollView on activity startup

I am displaying some data in a ScrollView. On activity startup (method onCreate) I fill the ScrollView with data and want to scroll to the bottom. I tried to use ...
11
votes
4answers
18k views

Scrolling Overflowed DIVs with JavaScript

I've got a div that uses overflow:auto to keep the contents inside the div as it is resized and dragged around the page. I'm using some ajax to retrieve lines of text from the server, then append them ...
1
vote
1answer
2k views

Android multiple list views that don't scroll independently

I want to create a page that has 3 lists and 3 headers but I don't want to scroll them independently, I want the whole page to scroll. Does anyone know how I could achieve this? Essentially I want it ...
28
votes
8answers
56k views

How to make div follow scrolling smoothly with jQuery?

I'm creating a blog layout, which has an sidebar. In sidebar there are sections/boxes, but the last one of these boxes should follow scrolling when none of the other boxes are visible. So, when user ...
18
votes
6answers
18k views

How to know when UITableView did scroll to bottom

I would like to know when a UITableView did scroll to bottom in order to load and show more content, something like a delegate or something else to let the controller know when the table did scroll to ...
17
votes
2answers
12k views

Horizontal UIScrollView inside a UITableViewCell

I'm trying to create the exact same effect as in the AppStore app for viewing screenshots: inside a UITableView, I have custom subclasses of UITableViewCell's. One of them is designed to show previews ...
25
votes
3answers
40k views

How can I scroll to a specific location on the page using jquery?

Is it possible to scroll to a specific location on the page using jQuery? Does the location I want to scroll to have to have: <a name="#123">here</a> Or can it just move to a specific ...
15
votes
3answers
12k views

jQuery disable scroll when mouse over an absolute div

I'm trying to disable the window mouse scroll functionality when the mouse is hovering over the div - so that only div scrolling is enabled - and when mouse moves away from the div - scrolling to the ...
18
votes
4answers
9k views

WPF ListBox Scroll when item added

I have a WPF ListBox that is set to scroll horizontally. The ItemsSource is bound to an ObservableCollection in my ViewModel class. Every time a new item is added, I want the ListBox to scroll to the ...
24
votes
4answers
24k views

javascript: detect scroll end

I have div layer with overflow set to scroll. When scrolled to the bottom of the div, return function
11
votes
7answers
19k views

jquery click on anchor element forces scroll to top?

http://stackoverflow.com/questions/720970/jquery-hyperlinks-href-value[link text][1] I am running in to a problem using jquery and a click event attached to an anchor element. [1]: ...
4
votes
3answers
7k views

Smooth scroller based on mouse position (Jquery)

HI! I would like to create a Smooth scroller based on mouse position. The idea is to create a outer div with a fixed width. The content is very wide and has to be scrolled to left or right, based on ...
7
votes
1answer
2k views

How to make inner div use window scroll bar?

I'd like to use a div within my page that does not take up the whole screen use the scroll bars on the edge of the screen when its content overflows. I know that sounds confusing, so here's an ...
5
votes
3answers
2k views

Android. Scrolling 2 listviews together

OK. What I'm trying to achieve is a layout that does the same effect as frozen panes in Excel. That is I want a header row that scrolls horizontally with the main ListView and a left hand ListView ...
5
votes
3answers
914 views

window.scroll function freezes firefox

I'm working on a page with a fixed menu that picks up after the user has scrolled a certain distance from the top, and as they scroll down the page, different links from the menu are given a class ...
0
votes
2answers
1k views

Control page scroll animation with mousewheel

can anybody help me understand how Honda achieved this effect: http://testdays.hondamoto.ch/ I mean the ease when you scroll.
3
votes
3answers
4k views

Differentiate between scroll up/down in jquery?

I have found some great ways to check for where the scroll bar is using jquery, but I was wondering if you can differentiate whether or not the user scrolled up or down?
32
votes
2answers
10k views

infinite-scroll jquery plugin

I am trying to set up infinite-scroll on a site I am developing with Coldfusion, I am new to javascript and jquery so I am having some issues wrapping my head around all of this. Do I need to have ...
21
votes
2answers
34k views

javascript scroll event for iPhone/iPad?

I can't seem to capture the scroll event on an iPad. None of these work, what I am doing wrong? window.onscroll=myFunction; document.onscroll=myFunction; ...
2
votes
2answers
9k views

Android: Scroller Animation?

I'm a newbie in Android development, and I would just like to know a little bit about the Scroller widget (android.widget.Scroller). How does it animate the view? Can the Animation object, if it ...
6
votes
6answers
17k views

jQuery on window scroll animate background image position

I am trying to achieve a scrolling effect using jQuery. I have a background div set to 100% browser window size with overflow hidden. This has a large background image that is approx. 1500px x 2000px. ...
20
votes
1answer
21k views

jQuery animate scroll to ID on page load

Im tring to animate the scroll to a particular ID on page load. I have done lots of research and came across this: $("html, body").animate({ scrollTop: $('#title1').height() }, 1000); but this ...
14
votes
4answers
60k views

Get current scroll position and pass it as a variable with a link?

I'll be honest, I'm way out of my depth here. I've created a pagination system where you click on a link it reloads the page and a certain number of list items are shown in an unordered list. When you ...
0
votes
2answers
3k views

Android: Enable Scrollbars on Canvas-Based View

I have a custom view that extends View. It displays drawn shapes, and allows the user to add to those drawings via drawing touch events to the View via onDraw. I've enabled the ScaleGestureDetector ...
1
vote
1answer
6k views

jQuery : add css class to menu item based on browser scroller position

<ul class="menu-bottom"> <li id="m1" class="active"><a id="1" href="#"><span>Link 1</span></a></li> <li id="m2"><a id="2" ...
7
votes
1answer
10k views

Maintain Panel Scroll Position On Partial Postback ASP.NET

I have a gridview that putted in ASP.NET Panel. both of panel and Gridview are in an UpdatePanel. there is a column in gridview that Causes Partial PostBacks. i want to Maintain Panel Scroll position ...
7
votes
7answers
7k views

Cross-Browser Method to Determine Vertical Scroll Percentage in Javascript

How can I find out what percentage of the vertical scrollbar a user has moved through at any given point? It's easy enough to trap the 'onscroll' event to fire when the user scrolls down the page, ...
5
votes
2answers
6k views

Scroll to anchor with fixed header, content hidden behind header, margin and top padding not working

I'm using smoothscroll.js to navigate my site. It stops on the correct anchor in Firefox, however in Chrome it passes the point on the first click of the link, and pushes the content to the top, ...
4
votes
1answer
3k views

Twitter Bootstrap Modal scrolling the page up on show

Clicking on a link which triggers a Twitter Bootstrap Modal to pop up is causing the browser to scroll up the page. This behavior is only occurring in Chrome. Here is a demonstration page: ...
4
votes
2answers
9k views

How to make a scrolable div scroll on click and mouseover using jQuery

Using the markup below how would I get the "#content" div to scroll up or down when I click or hover over the "#scrollUp" or "#scrollDown" anchor tag. Scrolling should be smooth preferably. If clicked ...
3
votes
2answers
10k views

jquery horizontal scroll with mousewheel

I currently have a site that is a sidescroller (http://www.studioimbrue.com) and I'm trying to bind a mousewheel to scroll sideways. Currently I'm using the one found at thehorizontalway.com (called ...
1
vote
1answer
4k views

Use jquery to make div appear after a user scrolls

I'd like to have a div appear after a user scrolls down on a page, and disappears if they scroll back to the top. I thought using the .scroll() function in jquery would be useful, but couldn't quite ...
0
votes
3answers
4k views

How do I make content load when the user scrolls down to it? [duplicate]

Possible Duplicate: How to load the web page content based on user scrolling I'm making a single page website and I'm hoping to achieve the effect that you can see on ...
8
votes
4answers
6k views

WPF TreeView - How to scroll so expanded branch is visible

When I expand items in my treeview so that scrolling is necessary, a scrollbar appears. However, it doesn't scroll down for the newly expanded branch of items - they get cropped by the bottom of the ...
7
votes
3answers
6k views

Android: Detect softkeyboard open

When the soft keyboard opens I want a scroll view to scroll down to the bottom. For this I can use: fullScroll(View.FOCUS_DOWN); But how do I fire that command after the soft keyboard opening event ...
5
votes
4answers
17k views

What's a good bit of JS or JQuery for horizontally scrolling news ticker

I am looking for a little bit of JQuery or JS that allows me to produce a horizontally scrolling "news ticker" list. The produced HTML needs to be standards compliant as well. I have tried liScroll ...
1
vote
7answers
16k views

jQuery: Scroll to anchor when calling URL, replace browsers behaviour

I already know the jQuery plugin ScrollTo, but I didn't find any way up to now to realize the following: The users gets to my site (by typing, NOT by clicking a link on my page) ...
3
votes
2answers
735 views

How to fix scrollbars when the window or container is resized?

Currently in my application I am using the HScrollBar and VScrollBar for panning around in a large image. The part of the image that is shown is based on the scrollbar's Value property. However, when ...

1 2 3 4 5 7