Jquery Tools scrollable problem?

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... :(.

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); }); }).

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