scroll

Problem waiting til function has finished executing before it tries to execute again...

Hi, I'm using the $(window).scroll(); to specify a function to be call for when the user scrolls too close to the top or bottom. The function takes a second to execute, and if they continue scrolling, it executes multiple times before the first one has even finished. Is there any way I can let the function start executing and then te...

Scroll for more script -- How?

If you look on http://soup.io or http://hashtags.org, and you scroll all the way down, you'll see how the page automatically loads MORE INFORMATION as you get to the bottom. How do I do this? ...

In WPF, how do I adjust the scroll increment for a FlowDocumentReader with ViewingMode set to Scroll?

Hi I'm displaying a FlowDocument in a FlowDocumentReader with the ViewingMode="Scroll". If I use the wheel on my mouse, the document scrolls very slowly. I'd like to increase the scroll step. I've tried to change the Scroll setting of my mouse in Control Panel, but that doesn't have any effect. I think that WPF ignores that setting f...

always scroll parent frame with mouse wheel?

I have an iframe main located in indexflash.html which houses the html document indexflash2.html which contains two frames topframe (loads main.html) and bottomframe (loads home.html). Both topframe and bottomframe have scrolling="no". topframe holds the flash navigation controls bottomframe updates with the content to display I wan...

How do I sense the end of a user scroll of a .Net TrackBar?

I have a TrackBar and already have the Scroll event treated, but it may trigger 10 times during a user scroll, and I would like to update a file when the user finishes scrolling. How do I sense the "end of scrolling" ? Would MouseUp and KeyUp do for this purpose ? Thx. ...

Circular Scroll View

Hi all, I have implemented a circular scroll view. It's working fine , but after sometimes the scroll view delegates are not getting called. I have attached the code , what is the bug in it .... // // MyScrollViewViewController.h // MyScrollView // // Created by Biranchi on 26/05/09. // Copyright PurpleTalk 2009. All rights reser...

JTable selects wrong cell on click

I am working inside of a quite complex eclipse based application, and having a problem with a JTable based custom component inside of a JSplitPane. The part of the application that I actually have access to is a panel, within a tab, within a panel, within the actual application, so there are a lot of things that can go wrong. The speci...

Scroll bar reset on GridView in ASP.NET

I am using a GridView and ListBox in a page. Gridview contains the data from db bind as DataSource. When clicking on an item in GridView the listbox displays the subitems. My problem occurs when there is a scrollbar in GridView. When I select the last item from the gridview, the subitems are displayed and the scrollbar is going to up. I...

Draggable+Sortable & Scrollable Divs

I have a container with a list of draggable items and container with a list of sortable items. The draggables & the sortable list is connected, allowing the user to drag clones of the draggables to the sorted list. The draggable items appear in a vertical list, however the sortable items appear in a horizontal list, achieved by floating...

Make TBODY scrollable in Webkit browsers

I'm aware of this question, but none of the answers work in Safari, Chrome, etc. The accepted strategy (as demonstrated here) is to set the tbody height and overflow properties like so: <table> <thead> <tr><th>This is the header and doesn't scroll</th></tr> </thead> <tbody style="height:100px; overflow:auto;"> ...

Scrolling divs "left and right" and "up and down" using jQuery

Hi guys, I'm working on www.alwaystwisted.com. The page has 4 divs that scroll via the main links down or up depending on what div you're on. I need this to work within the div, but left or right depending on what div you're on. I can't work it out and it's frying my brain. <script type="text/javascript"> $(document).ready(function()...

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 click it again it'll reload the page and more items showing. Think how Twitter shows the tweets in your feed. The problem is when it relo...

How can I add link-specific scrolling animations, horizontal and vertical, using jQuery?

I've got this script on my website: $(document).ready(function() { function filterPath(string) { return string .replace(/^\//,'') .replace(/(index|default).[a-zA-Z]{3,4}$/,'') .replace(/\/$/,''); } $('[href*=#]').each(function() { if ( (filterPath(location.pathname) == filterPath(this.pathname)) &&...

Sliding Panels activated by Links

I have three links. I want each link to control a separate DIV (I guess within a container DIV). So when you open the page you have DIV-1, then you can click on the link for DIV-2 or 3 and the view will slide or scroll to that DIV. How is this possible in jQuery? I've tried scrollleft to no avail. Thanks in advance, Stu ...

Flash CS4 AS3 horizontal movieclip scrolling with mouse move

I'm new to AS3 and have been working on an XML driven navigation system written in AS3. At present, I've imported the contents of an XML file and plotted it inside a containing MovieClip created at root level dynamically on the stage. This MovieClip is called 'container'. What I want to accomplish is a smooth, accelerating / decelerati...

How to create a horizontal scrolling view for the iPhone?

Safari does this with tabbed web pages. The AppStore (3.0) does this with an app's preview images. Views scroll horizontally and lock in centered on each view. Any idea how to accomplish this? ...

Did iPhone Simulator 3.0 break two-finger div scrolling?

I recently upgraded to iPhone Simulator 3.0, and when I do a two-finger scroll on a div (in Safari or UIWebView), it no longer works. To do a two-finger scroll in iPhone simulator, hold option to get two fingers, hold shift to lock the fingers in place relative to eachother, and then click and drag the div. You can try scrolling the ex...

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]: http://stackoverflow.com/questions/720970/jquery-hyperlinks-href-value "This" SO question seems to be a duplicate, and the accepted answer doesn't seem to...

how to avoid cell state changes on scroll.

Hi, I want to use the minus red control to mark a cell for deletion in a batch deletion way. I made some goals like multiselection or avoiding delete button being shown, but when table auto scrolls to the first row, after user ends dragging, all cells that were in showingDeletion state change to editingState and the minus red buton get...

Repaint of panel

My problem is that I have a panel in panel. Inside i have the AutoScroll property set to true. When I open a new window this panel is scrolled to begining. I do that, I save the position before open new window, and I set it after close it. It works but it jumps to the beginning and then back to my position. ...