0
votes
0answers
29 views

Display Entries done in database asynchronously in web application

I have a made a customized log functionality for my web application(ASP.NET , C#.NET) which adds entries based on user actions to the database. I want to display the Entries - with the most current ...
0
votes
2answers
37 views

how to check if all ajax functions are done loading in the page?

In my page I am using SharePoint 2010 client object model to call asynchronous functions (ajax calls). On page load, I make lots of ajax calls to load data. But I would like to know if there is a way ...
1
vote
4answers
55 views

New to async programming. How do I get things to happen in proper sequence across different objects?

I'm trying to refactor my program. I had made it work by making the AJAX calls synchronous, but now I'd like to do it the proper way. What's happening is that headline is instantiated with a new ...
0
votes
1answer
39 views

Variable overwritten when using asynchronous AJAX (using jQuery) request to load data

I have the following code that loads information about a users payments a month in advance of when it's needed. The function works when I wait for each month to load however it fails when multiple ...
0
votes
2answers
50 views

show ajax loading indicator when using synchronous ajax with JSON

I'm using ajax with jQuery on my site and need to show a progress / loading indicator. My dilemna is this: Synchronous AJAX locks the browser, so I cant do anything (e.g. show a loading indicator) ...
0
votes
2answers
48 views

Ember Ajax Calls running in serial

Setup: blah is my ember app find essentially calls Ember.$.ajax(url, params, method) the find method isn't a blocking call Neither of the routes nor controllers have dependencies (needs) on each ...
0
votes
1answer
42 views

Jquery function doesn't wait result of Javascript function result why? [duplicate]

I have 2 method. second one calls the first one. When I put an alert function into the first one I can see the return value. But second function see the value as undefined. I couldnt understand why 2. ...
1
vote
1answer
35 views

Why the text before Ajax call is not display?

function pdfToImgExec(file, IsfirstLogging, folder, round) { alert(file); var postString = file + '&' + IsfirstLogging + '&' + folder + '&' + round; var errorMsg = (folder == ...
-2
votes
2answers
62 views

Asynchronous and synchronous

IF I used synchronous and asynchronous ajax request on the same page when page will load on browser and synchronous request is first and asynchronous is second request on page. So what will be happen ...
0
votes
1answer
57 views

For loop continue looping only when a function inside is finish?

Here is an function first getting a file list, for each file, it will call a ajax function to execute something: function getImagesList(folder) { $.ajax({ type:"POST", ...
-2
votes
4answers
75 views

Prevent code from re-executing before it's complete

I have the following scenario: $('button').on('click',function(){ // Run AJAX commonds (May take some time); }); So If the user clicks the button several times, he could be executing a ajax ...
1
vote
2answers
89 views

Javascript execution code order

I am giving my first steps in Javascript and trying to understand how it works. I've come to a problem of execution order of the code. var Parsed = [[]] var txtFile = new XMLHttpRequest(); ...
1
vote
3answers
75 views

Is it possible to receive out-of-order responses with HTTP?

Sec 8.1.2.2 Pipelining says: "A server MUST send its responses to requests in the same order that the requests were received". So, I thought, if I send out multiple AJAX requests from my ...
0
votes
0answers
42 views

CakePHP AjaxMultiUpload and file validation

I'm using the AjaxMultiUpload plugin with CakePHP and would like to check whether a file being uploaded asynchronously is either an image or file. You are able to have multiple uploads in the same ...
1
vote
3answers
58 views

Is there a pattern to manage javascript sync and async call

I have a javascript app saving all data on server, then use REST API communicate server and client. They works fine, until we start have more and more nested async call or nested sync call which ...
0
votes
1answer
35 views

All AJAX request complete?

I am working on a web site, and at some point in my code, I make some AJAX call: PART(I) for (var i = 0; i < arr.length; i++){ var id = arr[i].id; makeXHRRequest(id); } and ...
1
vote
4answers
77 views

How to push new HTML data from the server to the browser without refreshing the page

I have seen many websites (facebook or stack overflow for instance) that will update certain features as new data is generated (new answer on a post for example). Lets say that there is a new post ...
0
votes
3answers
39 views

Javascript: Async nested function in other async function gives unexpected results

I have two asynchronous functions the one nested in the other like this: //Async 1 document.addEventListener("click", function(event){ for (var i in event){ //Async 2 ...
2
votes
1answer
31 views

Async Ajax vs Async attribute

just a quick question is the async Ajax the same as the async attribute? Thanks
1
vote
2answers
35 views

When both http requests done execute function

I'm currently learning Javascript and AngularJS in specific and there's one thing I can't seem to understand how to do. As you'll see futher, I'm also struggling to switch my mind from "sequential" ...
1
vote
2answers
81 views

jQuery AJAX triggering too quickly

I have a relatively simple jQuery AJAX call wrapped in a function and I am testing my error functionality. The problem I am facing is the AJAX call happens too quickly! It is causing my 'H6' and ...
3
votes
3answers
62 views

Wait for async ajax requests to finish

I'd like to write a function which performs a dozen async ajax requests, wait for all of then to finish and then return aggregated info. Like: function countHealthy(urls) { var healthy = 0; for ...
1
vote
1answer
33 views

progress on $.when call

I am trying to do some AJAX call using $.when and $.then functions. I am using these functions to fill a template and so , in the meanwhile , I want to fill the form that I will fill with some ...
0
votes
3answers
28 views

Asyncronous variables outside a for loop

I'm just starting out with AJAX and I'm trying to get a variable to be set inside a for loop. Then I want to call that variable later and use it's value. Of course this would be synchronous, ...
0
votes
0answers
62 views

jQuery AJAX method is calling onchange of objects

I am a little bit confused about the jQuery AJAX method, the method is calling when I change something on the screen. May there be some problem asynchronous task? This is inside of the jQuery click ...
0
votes
0answers
50 views

Background processes with open connections in Rails

So I have a Rails app that scrapes titles from web pages when ajax requests are made from the client. The requests are used for populating form fields in the client UI. The trouble is, sometimes these ...
1
vote
1answer
53 views

Why my following ajax is not working in Asynchronous mode

below is my code that I call on page load. it works when I use xmlhttp.open("GET", "../handlers/fetchshift.ashx?id=" + divs[i].id, false); but if I use xmlhttp.open("GET", ...
0
votes
2answers
135 views

Simple AJAX Servlet with Callback

I am trying to learn AJAX and now I'm reading up on servlets and callbacks. I feel like my book didn't cover servlets or callbacks in detail so I looked at a number of online resources only to get ...
0
votes
0answers
57 views

Can't make a synchronous REST call in jQuery 1.8+

As of jQuery 1.8 the async:fals option for the $.ajax function has been deprecated. This was my go to method for making REST calls. Can any one demonstrate a method for making a synchronous REST call ...
1
vote
3answers
90 views

jquery click function with slow ajax in it

I have a click handler bound to a list of radio buttons. When someone clicks any of these buttons, an ajax request is performed, which goes away to a server, and comes back with some data, which is ...
1
vote
1answer
525 views

Using Ember.js Models with asynchronous jQuery Ajax callbacks

I'm currently building my first Ember.js app. My problem is to return the response of a jQuery Ajax similar call (asynchronous) to App.PostRoute's model property. I'm a bit confused that the ...
0
votes
1answer
42 views

Having a loading message when looping through a set of database queries (mySQL/sqLite)

I wish to show a loading message while querying info from a database in sqLite. Here's what I have so far: $.mobile.showPageLoadingMsg("a", "Updating Distributor List...", true); $.ajax({ ...
1
vote
2answers
43 views

jquery ajax, where to do asynchronous computations after GET call

ajax in jQuery with the request type, url, success functions. A lot of times I am expecting a JSON response. My problem is that I then need to reformat the json arrays into a different structure. ...
0
votes
1answer
22 views

Submitting 2 forms asynchronously

I am trying to submit 2 forms with one click. It even looks like both forms are being submitted but the call to the second form (from the callback on the first form post) has no tangible results. ...
0
votes
1answer
45 views

Use function to display database value

I'm building an website that entirely consist of JavaScript (for fun). I'm now adding the option to select a language which would change some parts of the website to that language (most hard coded ...
0
votes
2answers
98 views

Is Backbone.js suitable for getting HTML from server?

As far as I can tell, Backbone.js view represents DOM element. I take it from existing DOM or create it on the fly in el attribute. In my case, I want to take it from server with AJAX request because ...
0
votes
1answer
72 views

Do jquery button events in MVC 3 have a built-in mechanism that prevent ajax calls from functioning in parallel?

I've got 2 jquery button events making their own ajax calls back to the server. However, when I click on the first button and then click on the second button before the first makes the round trip ...
0
votes
0answers
26 views

javascript callback error on mobile

I have a javascript script that loads after the site is loaded. and it loads some css files and html, it works great on desktops browsers. BUT when it loads on mobile the call back function is not ...
1
vote
2answers
43 views

How to control the order of JavaScript functions while using AJAX

My Setup function ajaxLoadSth(value, attribute) { $.post( url, value, function(response) { // interpreting the response var foobar = $('#foo') + $('.bar').find('.sth'); ...
0
votes
1answer
179 views

jqplot external data with async call?

Is there a way to load external data into jqplot with async call? I want a live graph that updates every minute, but with async:false the page freezez every time when the data is recieving from ...
0
votes
1answer
138 views

ajax call back JSON object returns undefined

I have looked at many many posts about this subject and have tried several of the solutions but i can not seem to get it right. last attempt function checkzip(x){ $.ajax({ ...
0
votes
0answers
85 views

Bonfire, sending data through checkboxes, Ajax is not asynchronous

So I've managed to complete the ToDo module-tutorial from the official Bonfire docs, even though I had to modify some parts to make the delete working. http://cibonfire.com/docs/files3/todo-txt.html ...
0
votes
2answers
202 views

Make an async ajax request when clicking on a link

I'm using PHP/jQuery and have the following scenario: I have a site (site1.php) with a link, which points to another site (site2.php), also I added to this link an ajax-onclick-event with jQuery ...
0
votes
2answers
137 views

Wait asynchronous .ajaxСomplete() before form submitting

I need to override form's submit method to wait until the ajax request will be completed. At the same time, ajax request should be asynchronous to display a progress indicator, also default form ...
0
votes
2answers
33 views

JS/HTML - One Page Apps - Cancelling asynchronous actions

I'm working on a one page application. First time I'm building proper one page applications and stumbling in a few gotchas. Each page has a set of asynchronous operations that could be triggered. ...
1
vote
5answers
83 views

How to preserve a variable in an ajax callback?

I wrote some javascript to run through an array of "modules". For each module it makes an ajax call, gets the html for the module, and dumps the module into one of two columns on the page layout. var ...
0
votes
1answer
2k views

jQuery ajax Page Reload

We are making multiple ajax requests to "save" data in a web app, then reload the page. We have run into a situation where (since requests are made asynchronously) the page is reloaded while or ...
0
votes
0answers
30 views

How can I enhance usability of dynamic filtering?

I've implemented dynamic filtering purely with AJAX (see How can I implement dynamic filtering purely with AJAX and still keep a usable history?) But now after clicking multiple filters very quickly ...
0
votes
0answers
54 views

Unable to find dynamically created control when JSON is used

I am calling JSON method on selected index changed of the drop down list which is as follows function StepImplementationScript(SelectedValue,UniqueField) { debugger; $.ajax({ ...
0
votes
0answers
113 views

load partial content async in parallel

Can anyone help with this, I have 4 sections on the page that display partial views with the data been pulled from a database. I want to load the data async using jquery or ajax if javascript is ...

1 2 3 4 5 8