3
votes
1answer
204 views

Javascript Queue Object

I created a Queue object when answering this question and I was wondering if it could do with some improvement. Here is the current code: var Queue = (function () { Queue.prototype.autorun = ...
6
votes
2answers
551 views

Custom JavaScript function queue

For fun, I made a function queue in JavaScript. I named it tinyq. You can add functions to it, and each function is passed the next function in the queue. You can also pass parameters to the ...
2
votes
1answer
207 views

Trying to improve my jQuery animation queue

So I built a little baseball "scouting report" graphic that shows stats for players. As you page through the players, their images slide in and out of the graphic. I worked out a way to do this using ...