Jquery Tools & Scrollable?

Here's what I ended up doing: I grabbed the api and replaced the next and prev functions; disabled circular; added first and last buttons. Sort of a workaround/semi-solution. You can see the result at cityrinks.ca/wiki/wiki.php?n=ListOfRinks....

Here's what I ended up doing: I grabbed the api and replaced the next and prev functions; disabled circular; added first and last buttons. Sort of a workaround/semi-solution. You can see the result at cityrinks.ca/wiki/wiki.php?n=ListOfRinks... $(function() { $(".

Scrollable") . Scrollable({ vertical: true, mousewheel: true, circular:false }) . Navigator({ navi: "#rinktabs", naviItem: 'a', activeClass: 'current', history: false }); var api = $(".

Scrollable"). Data("scrollable"); api. Next = function(time) { index = this.getIndex(); size = this.getSize(); interval = size - index; if (interval > 4) interval = 4; return this.

Move(interval, time); }; api. Prev = function(time) { index = this.getIndex(); if (index > 4) index = 4; return this. Move(-index, time); }; $("#firstbutton").

Click(function() { var api = $(". Scrollable"). Data("scrollable"); return api.

Begin(api. Speed); }); $("#lastbutton"). Click(function() { var api = $(".

Scrollable"). Data("scrollable"); return api. End(api.

Speed); }); }).

What happens if you replace the JS src with.

What happens if you replace the JS src with cdn.jquerytools.org/1.2.5/full/jquery.to... Or change the jQuery to: $(function() { // initialize scrollable $(". Articles"). Scrollable({ vertical: true, mousewheel: true }); }).

Sorry I only just read the bottom part of your message, I'd just replace the contents of the JS with that of the one off the website... – christian. Thomas Apr 29 at 0:33.

This is actually a bug in jQuery. bugs.jquery.com/ticket/7193 It's been fixed in 1.4.5. But that is unfortunately not out, yet.

If you can roll back, it doesn't exist in 1.4.2. So that's a possible workaround.

No dice. It didn't work :( – Jason Dec 7 '10 at 4:49.

Okay people, found the issue. It's documented here: flowplayer.org/tools/forum/35/54010 Basically if the . Items (in a standard install) goes beyond left: -10000px, you get this issue.

Each item in my install is around 1000px so it makes sense that the 11th one causes the problem. Now to find a work around... :(.

I think you have to do it yourself with a timer, something like this should do it.

I think you have to do it yourself with a timer, something like this should do it: function auto_next() { $('#scroller'). Data('scrollable').next(); setTimeout(auto_next, 1000); // 1000 == one second } auto_next(); You could also use setInterval but then you'd run the risk of your timed events overrunning each other. References: jQuery Tools API Scrollable API setTimeout.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions