Tagged Questions
1
vote
1answer
37 views
What Constitutes Asynchronous JavaScript?
One of the stand-out features of JavaScript (or detriment, depending on your views on the subject) is it's asynchronous nature. I understand how the code flow works, but I'm not 100% on what makes ...
1
vote
0answers
18 views
How to create a waiting line in coffeescript or javascript ? or another approach
What my app do:
Streams information asynchronously (It's a comet style app and im using Faye).
Appending to a carrousel.
Displaying it for 7 secs.
Repeating the step (2).
What my problem is:
If i ...
1
vote
2answers
59 views
Node.js async to sync
How can I make this work
var asyncToSync = syncFunc();
function syncFunc() {
var sync = true;
var data = null;
query(params, function(result){
data = result;
sync = ...
3
votes
1answer
38 views
NodeJS Background jobs never execute, loop forever
I have a module that starts some background jobs in NodeJS (the jobs are HTTP requests), here is a simplified version of it:
var
util = require('util'),
EE = require('events').EventEmitter,
...
2
votes
4answers
72 views
Real asynchronous javascript function
Does
setTimeout(function () { /*logic*/ }, 0);
Really makes the function to be asynchronous?
3
votes
1answer
32 views
Testing requireJS methods async with Jasmine
I am trying to test a function that requires a module using jasmine and requirejs.
Here is a dummy code:
define("testModule", function() {
return 123;
});
var test = function() {
...
3
votes
2answers
58 views
How can I perform an asynchronous operation before grunt.initConfig()?
Now I have my Gruntfile setup to perform some automatic detection magic like parsing sourcefiles to parse some PHP sources in roder to dynamically figure out filenames and paths I need to know before ...
0
votes
2answers
61 views
How to callback function from another file in nodejs?
Im starting to work with async programming, Im making a nodejs application, I´ve slice the code in some files: index.js, ctlUser.js, DAO.js etc... .. Index.js is the main file it requires ctlUser and ...
1
vote
1answer
45 views
Elegant way for multiple asynchronous function calls in Javascript
I need to call the same asynchronous function multiple times but not till one call is finished (i.e. when the callback function is executed). So my code looks like this:
syncFunc(a, function() {
...
0
votes
3answers
27 views
How to work with long-lasting http requests
I have a long-lasting http request (a lot of computation in the back-end).
Currently it's all synchronous, while the server computer, the browser doesn't see the output/result. After a while, the ...
2
votes
2answers
90 views
Is Javascript synchronous(blocking) or Asynchronous(nonblocking) by default
I am trying to grasp on Javascript Asynchronous functions and callbacks.
I got stuck on the concept of callback functions, where I am reading on some places: they are use to have sequential execution ...
0
votes
1answer
39 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. ...
2
votes
1answer
56 views
Setting the height & width of a div's background image, without knowing them in advance
using jQuery:
Whenever someone adds a background image to a div, the width and height of the background image need to be known in advance.
e.g.
$("#id-of-some-div").css(
{
backgroundImage: ...
0
votes
1answer
37 views
Should I be chaining methods and functions in node.js and Express?
Just like everybody else, it would seem, I have begun to play around with node.js and the Express framework.
Whilst I am reasonably confident with client-side Javascript, relying heavily on JQuery of ...
1
vote
0answers
21 views
How Can I Reliably Complete Asynchronous Operations on Firefox browser close?
I'm writing a browser extension for Firefox that uses IndexedDB to save local data. When the browser closes, I'd like to write the latest data out to my IndexedDB. However, IndexedDB is entirely ...
0
votes
2answers
42 views
Control flow: Run two asynchronous array maps
I have two functions that are asynchronous – they accept a function as a parameter which it called when it is done (callback).
function a(item, cb) {
someAsyncOperation(function () {
cb(item)
...
6
votes
4answers
106 views
Javascript Async=true Attribute
I see this code sample in a certain unnamed vendor's documentation. It appears to load a script asynchronously, then invoke a function from it thereafter. I realize that the if-undefined check will ...
0
votes
2answers
43 views
nodejs using callback and event
I am new to nodejs programming. so be patient with me.
I have two nodejs modules. One passes passes a message to another nodejs module. the second processes it and pass result back
to the first ...
0
votes
1answer
33 views
Want to pass a variable to node async's map method
I'm using node async, and I'd like to pass a variable to the method that it uses within the second parameter... e.g:
async.map(submissions, addScore, function(err, submissions) {
if ...
0
votes
2answers
55 views
Jquery asynchronous form submission in Rails
I am trying to upload an image using asynchronous submission of form , this is my Rails HTML :
<%= form_for(:image, :url => {:controller=> 'questions',:action => 'upload_Qimage'}, :html ...
1
vote
1answer
32 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 == ...
0
votes
0answers
30 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. ...
-2
votes
2answers
56 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
53 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
5answers
70 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 ...
0
votes
1answer
33 views
NodeJS, SQL Async issue
I'm having a problem serializing a couple of functions in nodeJS. What I want to do is create a temporary view, read it, then drop it for each element in the ft array. Here is my code. I am using the ...
1
vote
1answer
32 views
error while using async in node.js
I am trying write a restapi using express framework and node.js. I am facing an error which I am unable to find out the root cause. I am getting the following error while trying to execute the code :
...
0
votes
2answers
36 views
Last callback not being called using async
I cannot seem to get the last callback (commented as "optional callback") called to send the result back to the browser. Any pointers as to what I am doing wrong? I am using the following modules: ...
1
vote
2answers
66 views
How to clean memory of browser in javascript from objects and classes?
I making a quest game with three scenes. The player can move from scene to scene and go back. (like a well known classic quests: Neverhood,Machinarium,The Curse of Monkey Island)
Each scene have it's ...
0
votes
2answers
69 views
How to execute .load function after another function finished? See the functions in example
I making a game with few scenes. Each scene have it's own javascript which i want to load asynchronously and after that to load the particular scene file into div.
Here is my html
index.html
...
1
vote
1answer
35 views
Call intern asyn callback more than once
Is it possible to specify the circumstances the asyn callback should be called in intern? Let's say we have a test testing a method which performs several XHR Requests in a row. Specificaly, I'm ...
2
votes
2answers
54 views
How do async tests work in intern?
How do asynchronous tests work in Intern testing framework? I have tried to get them run exactly as in the example, but the async test passes immediately without waiting for the callback to be run.
...
2
votes
2answers
33 views
event handler that knows the event name
I have a socket.io server that generates many events, and I want to catch all of them and print a similar message. Right now, I do this:
for (var event in {eventA: 1, eventB: 1, eventC: 1}) {
...
3
votes
5answers
90 views
What is the difference between synchronous and asynchronous programming (in node.js)
I've been reading nodebegginer
And I came across the following two pieces of code.
The first one:
var result = database.query("SELECT * FROM hugetable");
console.log("Hello World");
The ...
1
vote
2answers
86 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();
...
2
votes
1answer
23 views
JavaScript to Silverlight: await task based method
I'm doing some research into calling Silverlight from Javascript. I have the scriptable method working but this method needs to be async. As such, when I return a value, like a string, from the ...
1
vote
1answer
23 views
Accessing global variable and asynchronous issue
Below is some code I've just started to work on (an avatar generator experiment). I want to be able to click on a button and change the position of the canvas element, but I'm having troubles with ...
1
vote
1answer
76 views
create an asynchronous each loop in jquery
This is my each loop:-
var image_obj = {};
$(".wrapper").each(function (index, data) {
var dfile = this.getElementsByClassName('image')[0];
file = dfile.files[0];
if(file != null) {
var fr ...
0
votes
1answer
28 views
Task/Action-api for JavaScript?
Is there any existing api/code for handling and chaining long-running "async" javascript functions?
First of all I don't think there are any such thing as an asynch function in js right? I guess the ...
0
votes
1answer
19 views
Getting an infinite calling stack with this javascript
I have:
var c = {
typeStart: function(msg, loc) {
loc.append("<p>");
this.typeLetter(msg, loc, 0);
},
typeLetter: function(msg, loc, pos) {
...
3
votes
2answers
190 views
Initialize AngularJS service with asynchronous data
I have an AngularJS service that I want to initialize with some asynchronous data. Something like this:
myModule.service('MyService', function($http) {
var myData = null;
...
8
votes
2answers
175 views
Is there a way to fake a synchronous XHR request?
I'm porting a pile of C++ code to Javascript using the Emscripten system. The C++ code has many calls to fopen which is a synchronous IO call. Within Emscripten, we simulate this using an XHR request ...
1
vote
2answers
56 views
Async - passing variables and preserving context
If you have the following code :
var asyncConfig = {};
var a, b;
for(var i = 0; i < someValue; i++) {
// do something with a
// do something with b
asyncConfig[i] = function(callback) ...
1
vote
4answers
51 views
JavaScript async callback and scope
Consider the following example:
var cb = function (t) {
console.log('callback -->' + t);
};
for(var i = 0; i<3; i++) {
console.log(i);
setTimeout(function(){
cb(i);
...
0
votes
1answer
53 views
Backbone.js render a view with a collection
I'm n00b with Backbone/Require JS and I'm trying to run a View based in a Collection.
I've split the code in files following MVC pattern
This is my code for the view:
File: views/petDirectory
...
0
votes
0answers
20 views
Is it possible to fire a event when other event is in process
I have a link element on top navigation. When I mouse hover on it, its gives me sub menu options. I want to click on a link which is present in sub menu. How can I do it.
I have tried the followings:
...
-2
votes
0answers
33 views
What language besides Javascript offers the best asynchronous http requests? [closed]
I have a bookmarklet that is used to test a list of given products on our various production and staging websites. This is not ideal because it requires everyone to have either firefox or chrome, and ...
1
vote
1answer
33 views
Async Template loading
I'm trying to asynchronously load 25 html templates
[urgent]
here's my code:
var loopingLoadTemplate = function(index){
var name = names[index];
$.get('templates/' + ...
0
votes
0answers
40 views
Facebook Like button holding up website from loading
Facebook LIKE button holding up page from completely loading. I thought this was async?
<body>
<div id="fb-root"></div>
<script type="text/javascript">
...
1
vote
3answers
55 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 ...



