Tagged Questions

186
votes
17answers
149k views

How can I upload files asynchronously with jQuery?

I would like to upload a file asynchronously with JQuery. This is my HTML: <span>File</span> <input type="file" id="file" name="file" size="10"/> <input id="uploadbutton" ...
9
votes
4answers
444 views

Consecutive Ajax calls

I need a little help in my application design. Using Ajax I want to get some PHP resources consecutively but I don't think if it is good to retrieve them using JQuery $.ajax method. I think something ...
9
votes
3answers
1k views

Designing a fluent Javascript interface to abstract away the asynchronous nature of AJAX

How would I design an API to hide the asynchronous nature of AJAX and HTTP requests, or basically delay it to provide a fluent interface. To show an example from Twitter's new Anywhere API: // get ...
8
votes
5answers
249 views

What are some good JavaScript/AJAX interface patterns for websites?

I really like how sites like FogBugz and Facebook offer snappy user interfaces by loading page content asynchronously. What are some good resources and patterns for applying this to other websites? I ...
5
votes
2answers
313 views

Ajax loading for complex projects

My problem is actually not the ajax loading itself, more the capability to load it without javascript. I mean, I cope easily when I code my whole project just based on ajax-availability OR just ...
5
votes
2answers
1k views

How do I force DOM to update/refresh just before and after an ajax query?

I'm having a browser issue with my Busy icon. The code looks like this: $("#busysymbol").show(); $("#busysymbol").position({my:"right top",at:"right top",of:$("#datepicker"),offset:"-3 3"}); var resp ...
5
votes
2answers
1k views

Reverse AJAX? Can data changes be 'PUSHED' to script?

I have noticed that some of my ajax-heavy sites (ones I visit, not ones I have built), have certain auto-refresh features. For example, in GMail, if I get a new message, I see the new message without ...
5
votes
2answers
381 views

Ajax: Building HTML vs injecting HTML

Trying to comply with StackOverflow's suggestion of asking a question, not creating a discussion, let us consider these two methods that use the HTTPAsyncRquest to update a web page without refreshing ...
4
votes
2answers
100 views

Can I “cancel” a long-running process that is happening within an updatepanel?

I have an updatepanel that contains a dropdown that once the page has finished loading that will go and populate the dropdown with the latest data. The data grab can take up to 3 minutes. Can I opt ...
4
votes
2answers
237 views

jQuery Deferred not calling the resolve/done callbacks in order

Code example: http://jsfiddle.net/MhEPw/1/ I have two jQuery Deferred objects. I want to have more than one 'async' request happening - and after they all run I want the callbacks (the .done ...
4
votes
1answer
180 views

android browser timers when keyboard is open

I have run into this issue where asynchronous functions do not execute when the soft keyboard is open in the android browser. For example: <input type='text' id='foo'/> .... ...
4
votes
3answers
205 views

JavaScript Asynchronous Design Book?

Can anyone recommend a really advanced book on asynchronous programming in JavaScript? Something that assumes the reader already knows how to do things in JavaScript, but is looking for in-depth ...
4
votes
4answers
1k views

Async Load JavaScript Files with Callback

I am trying to write an ultra simple solution to load a bunch of JS files asynchronously. I have the following script below so far. However the callback is sometimes called when the scripts aren't ...
4
votes
4answers
3k views

How to know when a web page is loaded when using QtWebKit?

Both QWebFrame and QWebPage have void loadFinished(bool ok) signal which can be used to detect when a web page is completely loaded. The problem is when a web page has some content loaded ...
4
votes
1answer
987 views

Jquery $.ajax async odd behaviour

I have a code snippet like this var searchurl="http://mysite.com/searchpath?q=test"; $.ajax({ type: "GET", url: searchurl, cache: false, dataType : "jsonp", async : false, success: ...
4
votes
5answers
359 views

To Ajaxify Or Not?

I really love the way Ajax makes a web app perform more like a desktop app, but I'm worried about the hits on a high volume site. I'm developing a database app right now that's intranet based, that ...
4
votes
6answers
2k views

How do you measure the progress of a web service call?

I have an ASP.NET web service which does some heavy lifting, like say,some file operations, or generating Excel Sheets from a bunch of crystal reports. I don't want to be blocked by calling this web ...
3
votes
2answers
82 views

How to create AJAX semi-synchronous behaviour

I spent the better part of last month beating my head against the wall before I came up with an easy way to dynamically load, and chain together HTML canvas classes which are stored on the server, ...
3
votes
3answers
74 views

Is it possible to have a semi-async ajax call in jQuery?

I'm working on a site that involves looping through an array, using a jQuery ajax call for each element. Here is a simplified version: var myArray=new Array("El1","El2","El3","El4"); for(var i=0; ...
3
votes
2answers
200 views

jQuery problem with (a)synchronous method calls

I have an strange behavior, which looks lika an problem with (a)synchronous method calls?!? I'm not sure! An function receives data using getJSON, post process those data, add them to an table, which ...
3
votes
2answers
593 views

How to prevent freezing PhoneGap app in Android when doing asynchronous AJAX call?

I have PhoneGap-Android app and I am using Jquery. I am doing ASYNCHRONOUS AJAX call and during the call, app just freezes and waits after AJAX call finish ( it is mainly noticeable when on GSM ...
3
votes
1answer
74 views

trouble updating multiple anchors aysc with jquery

So i have all these links in html like this <a href="#ajax" class="invlink" competition_id="532">Gen Invoice</a> <a href="#ajax" class="invlink" competition_id="534">Gen ...
3
votes
1answer
100 views

Controller actions appear to be synchronous though on different requests?

I am under the impression that the below code should work asynchronously. However, when I am looking at firebug, I see the requests fired asynchronously, but the results coming back synchronously: ...
3
votes
4answers
702 views

jQuery Ajax / .each callback, next 'each' firing before ajax completed

Hi the below Javascript is called when I submit a form. It first splits a bunch of url's from a text area, it then: 1) Adds lines to a table for each url, and in the last column (the 'status' column) ...
3
votes
2answers
289 views

How to deal with out-of-sequence Ajax requests?

What is the best way deal with out-of-sequence Ajax requests (preferably using a jQuery)? For example, an Ajax request is sent from the user's browser anytime a field changes. A user may change ...
3
votes
2answers
727 views

Async upload problem using jquery.form.js

I'm using the jquery.form plugin to asynchronously upload documents in an MVC project. Taking my lead from this previous answer, here's what I have on the page: <% using(Html.BeginForm("Create", ...
3
votes
2answers
589 views

Loading indicator with Google Chrome

I have problem with Google Chrome or rather Androids (2.1) webbrowser. My webapp calls restservices with each page shift. This takes some time and I need a feedback for the user like a little ...
3
votes
2answers
117 views

How do ansynchronous methods work

I'm wondering if anyone can help me understand some asynchronous javascript concepts... Say I make an asynch ajax call like so: xmlhttp=new XMLHttpRequest(); xmlhttp.onreadystatechange= myFoo; ...
3
votes
6answers
356 views

async execution of tasks for a web application

A web application I am developing needs to perform tasks that are too long to be executed during the http request/response cycle. Typically, the user will perform the request, the server will take ...
3
votes
3answers
5k views

Using jQuery To Call A Controller Action

I have a nice page that does everything I need. However one of the elements (a partial page) takes a few seconds longer then I'd like to load. So what I'd like to do is to show the page without this ...
3
votes
6answers
548 views

Order of evaluation in JavaScript code using Ajax?

It seems (to me) like javascript statements do not always run one after another. I know they do that way but sometimes it seems like a show() func tion fires at the same time with hide() so the logic ...
3
votes
2answers
12k views

Return value from function with an Ajax call

Can someone tell me how to return the value of status as the function's return value. function checkUser() { var request; var status = false; //create xmlhttprequest object here [called ...
2
votes
1answer
44 views

Undefined Indexes in Array after Asynchronous Requests

I'm having some difficulty with an array that is (outside of an asynchronous call) perfectly well-defined but when I call its indices inside an asynch request (e.g. $.getJSON) all the indices of the ...
2
votes
2answers
101 views

Javascript 'confirm()' Cancelling Post Back

On an asp.net 3.5 page, I have multiple textboxes that fire async postbacks on the TextChanged event as the user progresses through the form. After the user completes the form a "Submit" button is ...
2
votes
1answer
90 views

Working on php/ajax chat system

I have been working on an ajax/php chat system where users can obviously chat with one another. Im concerned about server load, the way it was originally programmed was auto refresh div (chat box) ...
2
votes
2answers
102 views

AJAX asynchronous response callbacks

I have been working with AJAX for a while now, but in limited and simple ways. I use JQuery Currently I am debugging a web application. The client side code uses JavaScript and JQuery. I noticed that ...
2
votes
1answer
151 views

AJAX onreadystatechange: navigate away and save changes at same time

When a user clicks a link, I would like to send an AJAX request to save the contents of the current page, and navigate away at the same time. Typically the window is trying to navigate away, all AJAX ...
2
votes
1answer
386 views

JQuery AJAX request behaving synchronous

This is similar to the "answered" question JQuery AJAX request behaving synchronous for unknown reason I believe that the actual issue with parallel execution observed by MGM has been overlooked and ...
2
votes
1answer
321 views

How do I track AJAX sections in Magento Onepage with Google Analytics Async

I have a magento store and I am trying to track the progress of users at the checkout process. I have the Onepage checkout enabled - which does some ajax stuff to essentially load 6 different steps ...
2
votes
1answer
792 views

jQuery - Disable HTML Page until .load calls is done

What is the easiest way to disable an entire HTML page until an initial .load call is complete? What I mean by disable is the user can not interact with it in any way. It is ok for them to navigate ...
2
votes
2answers
373 views

What does Asynchronous means in Ajax?

What does Asynchronous means in Ajax? and also how does Ajax know when to pull data without server polling?
2
votes
5answers
412 views

A reasonable number of simultaneous, asynchronous ajax requests

I'm wondering what the consensus is on how many simultaneous asynchronous ajax requests is generally allowable. The reason I ask, is I'm working on a personal web app. For the most part I keep my ...
2
votes
5answers
408 views

PHP display progress messages on the fly

I am working in a tool in PHP that processes a lot of data and takes a while to finish. I would like to keep the user updated with what is going on and the current task processed. What is in your ...
2
votes
3answers
301 views

ASP.NET AJAX weirdness

Ok, I thought I understood these topics well, but I guess not, so hopefully someone here can clear this up. Page.IsAsync seems to be broken. It always returns false. But ...
2
votes
2answers
603 views

Call interrupted by page load

I am a beginner using ajax and I always thought that it is completely asynchronous. But I discovered that a call can be interrupted by a page reload or a page change (like clicking on a hyperlink). I ...
2
votes
1answer
827 views

Javascript synchronous AJAX timeout

My Javascript needs to send some data to a server when the page closes, which I currently do with a synchronous AJAX (SJAX?) request in window.onbeforeunload. The problem with this, of course, is that ...
2
votes
6answers
491 views

Javascript/jQuery variables not giving expected values

Like others before me I'm struggling with scope in Javascript. (That and trying to read the darn stuff). I have checked some of the previous threads on this question but I cant seem to get them to ...
2
votes
2answers
2k views

Google Maps: geocode addresses asynchronously, but get their responses in order

I'm trying to plot lines between two or more addresses in Google Maps. The idea is that addresses are in an array (in the order of the route taken), then the array is looped over and geocoded via ...
2
votes
3answers
458 views

JavaScript asynchronous race condition

There is array of objects, which are expanded with parallel ajax requests. When last request is done array should be processed. The only solution i see is: function expandArray(objects, callback){ ...
2
votes
3answers
886 views

Validating and Submitting a form using Javascript + Ajax

Here's what I'm trying to do. When the 'Submit' form is clicked on my form, a javascript function will loop through all the fields of the form. For each field a function will be called which would ...

1 2 3 4