Tagged Questions
1
vote
0answers
30 views
Chaining animations smoothly for several elements in jQuery
I'm trying to recreate a map's zoom-in effect by animating sequentially several stacked images using jQuery, for cross-domain purposes.
I achieved something so far, by queueing the animations using ...
3
votes
1answer
41 views
Using Javascript to rate limit and queue ajax calls to once every 15 seconds
I have an application that automatically tweets every time a user does something...
Users can easily perform that action once every second if they like.
Twitters rate limit says that it pays ...
0
votes
3answers
49 views
Queue multiple AJAX requests, waiting for response and not freezing browser? [duplicate]
I am working a script, I need to loop an array of AJAX requests:
$('#fetchPosts').click(function(){
for(var i=0; i < link_array.length; i++) {
settings = {
// some object ...
0
votes
1answer
49 views
Detecting if array object is “in use”
I have some script that is calling AJAX information from a server and then displaying the information into blocks on the page. And every 8 seconds those blocks will fade to a new set of information.
...
0
votes
0answers
43 views
jQuery animation queue not working inside loop (dynamic element names)
So, I'm trying to make an animation with few images to move across the screen. And I want one picture to move only when previous is finished. So I searched and found queue as a possible solution.
But ...
0
votes
0answers
17 views
Wait for the execution of a queue with queuejs
I need to easy chain some functions with Javascript. I have found some libraries and the smarter one seems to be queryjs.
But I need to wait for the execution of each function waiting for the end of ...
0
votes
0answers
90 views
show progress loader while asynchronously loading and processing csv files
My question is quite simple, but I'm having a difficult time figuring out how to go about solving it. As shown in the code below, I am loading 3 csv files and then processing them using queue.js. ...
0
votes
1answer
102 views
Queue asynchronous operation which involves promises
I need to use a queue to serialize my async requests. Looking around, I've found a small library by Mike Bostock here. But I am a bit confused as tp how to use it along with promise object.
So, I ...
0
votes
2answers
68 views
Javascript - run time priority and queue
if i do:
setTimeout(function(){ alert('antani'); },400);
setTimeout(function(){ alert('supercazzola'); },400);
why does this script generates queue between these two timeouts?
Shouldn't they ...
0
votes
0answers
134 views
SharePoint 2010 __doPostBack queue
When I'm calling several __doPostBack() functions one after the other, I get executed only the last.
For example,
$('.button').click(function() {
...
1
vote
1answer
81 views
jQuery Queue Functions
Take these two methods:
function moveUp() {
this.element.rotate(0);
this.element.animate({"margin-top": "-=51px"}, "slow");
//do some more things for instance.
}
function ...
0
votes
1answer
80 views
Can you simultaneously read and write a javascript array? [closed]
Short story
I need to be able to push messages onto a client-side javascript array/list but at the same time be able to pop messages off it. Sort of like a queue.
Long story
I am creating a real-time ...
1
vote
1answer
124 views
queue.js: difference between array of functions & array of closures?
So, I am trying to make sure that a series of HTTP GET requests happen before I try to render the data gotten into a visualization. Typical deal, right?
I'm using queue.js, and seeing this on the ...
0
votes
0answers
225 views
Use jQuery with CSS3 Animations
I need to create a rotator using CSS3 and jQuery. I am using CSS3 to control the fading in and out with jQuery to control when the classes are added. However I cannot get this to work. Here is a ...
1
vote
1answer
81 views
How to create a callback priority queue with the help of jQuery?
When doing $(element).on('customevent',function(){});, every element that binds the customevent will also trigger. This works roughly as a Pub/Sub, and it appears that there is no order or priority. ...