Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

Releases for jQuery Tools / Scrollable


jQuery Tools / Scrollable 1.2.0

Smaller and simpler. More features.

In this version Scrollable gives you complete freedom in "page" design. You can choose to have a variable amount of items on a single page with variable width. The circular feature is now a core feature and it is no longer in beta. Infinite loops are now rock solid and you can even add new items in a circular scrollable without breaking it. You can navigate between pages with the browser's back button and the browser history also works for dynamically added items. All this in a ridiculously small 0.98 Kb file size. The smallest scrollable on the web is now 50% smaller!

See what's new in jQuery Tools 1.2.0

jQuery Tools / Scrollable 1.1.0

This version of scrollable is smaller yet richer. Comes with scrollable plugins: circular, autoscroll, mousewheel and navigator. See a complete list of new features and fixes in jQuery Tools 1.1.0.

jQuery Tools / Scrollable 1.0.3

  • this plugin is now part of the jQuery Tools UI library and prefix was changed from jquery.scrollable to tools.scrollable
  • Navigational elements can be other than siblings. The problem was spotted from this forum thread.
  • Support for varying width items in scrollable. Thanks to "rpitting" who made a solution
  • Next and prev actions now work on two sized scrollables
  • Automatic scrolling can be stopped at runtime by calling: getConf().interval = 0. See this forum thread.
  • Clicking on the last items was working inconsistently. Thanks to "xeshm" who suggested a solution.

Scroll your HTML with jquery.scrollable 1.0.2

Scrollable provides generic scrolling capability to your pages. Anytime you want to scroll your HTML elements in a visually appealing way you should use this tool. In this minor release:

Scroll your HTML with jquery.scrollable 1.0.1

Followgin issues were fixed

  • getItems() did not return correct items after new items has being added / removed
  • mousewheel works similarly in Opera too
  • checked and tested that everything works good with jquery 1.3.1
  • getVersion() returns an array [1, 0, 1] instead of string "1.0.1"

Look for scrollable demo area for more details.

Scroll your HTML with jquery.scrollable 1.0.0

A major update. Complete rewrite.

Highlights

  • a whole new API for interacting with scrollable.
  • now it's possible to add/remove items from scrollable using standard jQuery methods.
  • automatic action generation for "next page" and "prev page".
  • interval option to automatically step through elements in specified intervals.
  • next/prev links can now be hidden (or styled) when they are not active
  • new important listener: onBeforeSeek

See full list of new features and changes.

There are also seven new demos for scrollable. They are in crucial part when learning this tool. Don't miss them.

Scroll your HTML with jquery.scrollable 0.1.1

I want to take a bunch of HTML nodes and do following things with them

  • make those items scrollable horizotally or vertically
  • decide how many items are visible at once
  • scroll elements with mouse, arrow keys and mousewheel
  • make navigational buttons without programming
  • have programmatic actions: next, prev, nextPage, prevPage, seekTo, begin, end
  • need to know when list is scrolled with custom event listener
  • I want this all in single js file that weights only 3.9 Kb!

I crawled the web and I couldn't find a scrolling solution that does this obvious thing nice and easily - they were too complex to use.