Tagged Questions
0
votes
2answers
30 views
Nested Callback stuck in Loop
I have nested callback that is setup as following:
function submitForm() {
BuildContent($('#Content').val(), '', true, submitForm)
PerformSubmit();
}
function BuildContent(textWithUrl, ...
0
votes
1answer
20 views
multiple ajax success callback defer
In my javascript, I have the following scenario:
call_A(success_A)
call_B(success_B)
function call_A(success){
// make ajax request
success(result)
}
function call_B(success){
//make ajax request
...
0
votes
1answer
28 views
Angularjs, $resource: how to get inserted object?
I need to get an inserted object immediately after insertion has been done. But this is a problem with Angularjs $resource.
module.factory('SearchQueries', function($resource){
return ...
1
vote
3answers
35 views
Ajax Login Form - Callback to PHP?
I'm trying a login in a lightbox via jquery and ajax.
My goal is that after the user logs in successful, he gets redirected to a special site.
The login via jQuery.ajax works fine, but I would like ...
0
votes
1answer
35 views
linkedin apply button callback and jquery (or ext callbacks in general)
I'm adding the linkedin apply button to a site and will use the callback to track applications
https://developer.linkedin.com/apply-processing-applications
Linkedin docs/example:
<script ...
0
votes
0answers
36 views
Zend and jQuery $.ajax() callback not working
Zend and jQuery $.ajax() callback not working
I can make my $.ajax() work on a web page, with input boxes, filled with a query with a php program,
but I can't make it work using the same function, ...
1
vote
1answer
37 views
JavaScript callback values not correctly passed
I am having some trouble passing a constant value to a callback function. I am performing a RESTful request using ajax, then handling the error and success events by returning data to a callback that ...
0
votes
0answers
46 views
jQuery & AJAX - using return value in multiple places
I'm using jQuery (and new to it) to do an AJAX call that queries a table & returns a value. The URL has in it a time parameter, and what is being returned is a Shift Number. The XML being ...
0
votes
2answers
81 views
Backbone.js $.ajax success callback inside a collection init not calling a function from the same collection
I'm trying to call loadPhotos, but I get an error saying that loadPhotos is not defined. I tried this.loadPhotos(); but then I get an error saying that the object doesn't have such a method. I'm ...
2
votes
1answer
42 views
JQuery wrong ajax done callback fired
I have a strange situation going on with ajax callbacks.
Call A works fine (I can see the server calls in the right place), and the done callback is fired correctly.
Call B call works fine (I can ...
0
votes
2answers
47 views
How to user jquery ajax error parameter
I'm looking for a simple example and/or explanation of how to use the error parameter for .ajax.
This question (jQuery ajax error function) points to this jQuery documentation ...
0
votes
2answers
49 views
when returning data to `.ajax` callback in jquery, do I have to user `echo`?
I'm a n00b learning via online tutorial. I have the following code in a "server side" test file called "response.php":
<?php
if (isset($_POST))
{
$answer = $_POST;
echo json_encode($answer);
} ...
0
votes
1answer
45 views
ajax callback and script tags
So, I've finally figured out an ajax callback does not load the content of a page that is between script tags. I've been trying for ages how to figure out the problem (no jquery expert here). I've ...
-2
votes
2answers
48 views
Using Ajax to display the values of an asynchronous function
I'm building a project that uses a function called Chat.fetch(); it's an asynchronous function that pulls an array of strings from the server. It's an ajax function that for purposes of the project is ...
0
votes
0answers
32 views
sbbmitting a form after validation with DWR
I need to validate a form and submit the form to a Java web application running on Spring technology. I am using dwr for converting some server side services to javascript functions. One of these ...
1
vote
0answers
19 views
Will google bot read the data which are fetched via jquery event -doucument.ready
We have an online book store which is powered by asp.net. The front page is little bit more resource demanding as featured books from many category are shown.
We are using 3 listview for showing ...
0
votes
1answer
365 views
jquery hit counter
I create a unique hit/click counter works on ip.
To display the number of clic, I use on the body tag the onload function.
For example:
<body class="homepage" ...
0
votes
0answers
40 views
Closing Down Colorbox before ajax content is loaded
I am using colorbox to load content via ajax into a modal. I have previous and next buttons within each modal that allow the user to go to the next or previous modal. These previous and next buttons ...
0
votes
0answers
52 views
A second callback with the results of an Ajax callback function as values (Straight forward maybe)
I've got an issue with a jQuery Ajax callback. Here is my javascript. What I actually ca do fine with the script, is to build a textfield and on typing keys, it calls a result from a php file and ...
-1
votes
1answer
47 views
What to return for jQuery's ajax data param in callback function?
I use jQuery's ajax function to call a url asynchron like this:
jQuery.ajax({
url: url,
type: "GET",
data: {key : value},
success: function(data) {
console.log(data);
}
}
...
0
votes
2answers
56 views
add global callback to $.ajaxSetup
I am use $.ajaxSetup to use a global authorization method, and global error handling in my site. I would like to pass a callback function into the global error method so I can call the function ...
2
votes
1answer
31 views
Handling independant data from multiple AJAX JQuery queries
I have a number of AJAX requests that are sent from a for loop, and want to send some data to the call back functions depending on the position in the loop.
When I try to attach a function to each ...
0
votes
1answer
61 views
javascript child function pass the return to the parent function return [duplicate]
i want to pass the return from a "child" (i don't know the correct term) function to the return in the parent function... how is the correct way to do this? check_data() isn't returning true or false
...
0
votes
2answers
64 views
fadeIn callback doesn't work from inside jquery.ajax success
I get some data using AJAX, prepend element to body and then display it. After it's displayed I need to perform some client-side operations on a new element (say, I need to render Latex using ...
0
votes
3answers
41 views
start next function after success
i want to start a function after a successful ajax call. What i do now is this
function ajaxCall(url, types, next) {
$.ajax({
url: url,
type: 'POST',
beforeSend: function ...
0
votes
1answer
35 views
Handling Multiple AJAX Callbacks with Unique Variables
I'm using JQuery's implementation of AJAX to access multiple JSON and different URLS. I have an array of names that each URL corresponds to, and would like to be able to reference the corresponding ...
0
votes
1answer
65 views
callback race: button click to trigger ajax, whose callback won't execute on time
I have what I think is a fairly classical problem involving what looks to me like a callback race, but in spite of all my reading, I'm still stuck. You'll find the code pasted below.
It's a simple ...
2
votes
1answer
38 views
jQuery plugin: invoke callback method that can then invoke plugin functions based on response
I'm getting into writing jQuery plugins and integrating them with AJAX. I'm cutting the fat and focusing on the basics:
(function($)
{
function MyPlugin(el, options)
{
this.element = ...
0
votes
0answers
88 views
Wti Like Post + Infinite Scroll (Wordpress callback)
I use wordpress and two great plugins : WTI Like Post and Infinite-Scroll
Wti like post is a thumbs up plugin which display on each post.
But when infinite-scroll loads the next set of posts, the ...
1
vote
1answer
61 views
Drupal populate date field using ajax
Need help to populate Drupal form API DATE Field in ajax call back , i tried most of the things but nothing works , normal textfields and all populating but date field alone not working
0
votes
0answers
50 views
AJAX Post assign returned data to variable
I have the following code that I am populating from a Mysql database using Smarty. I can retrieve all desired data and populate the order_details JS array except for the images.
I finally tried to ...
1
vote
3answers
84 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
155 views
jsonp: callback jQuery AJAX with Multiple Array data
Here i'm doing a JSONP request, that will get an object literal passed into the callback function.
My Issue:
1.From the filename.php i'm passing two different array's like :
echo ...
1
vote
1answer
54 views
Callback to a class instantiating another class making AJAX request
This is a somewhat difficult question to word. Here is the basic process:
A class is instantiated.
This class's constructor method then instantiates another class
This new class's constructor method ...
0
votes
1answer
40 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({
...
0
votes
0answers
46 views
Why is Express.js POST from Safari Extension showing as GET in console [duplicate]
I'm working on a plugin with a Node/Express backend. The extension POSTs JSONP to a POST API, but the log shows a GET request.
//extension;
$.ajax({
type : "POST",
url ...
0
votes
1answer
56 views
Pure Nonsense - Nested Ajax
Consider this nested ajax call:
$.ajax({
type: "POST",
dataType: "json",
data: dataString,
url: "includes/check.php",
success:function(result){
...
1
vote
2answers
56 views
How to handle several ajax requests?
My script needs to handle several ajax requests. Here is a simplified version:
function request(variable){
$.ajax({
// call config
}).done(function(data){
// treatment of ...
0
votes
2answers
80 views
How to use JSONP random callbacks with jQuery?
I'm struggling with jQuery to handle an Ajax/JSONP request.
I'm working with two different domains, and I make several simulatenous ajax calls. Therefore, I need to rely on a callback random name ...
0
votes
4answers
247 views
AJAX asynchronous call — can't return data with callback?
I have this code below, and I want to return the data in the success function of the ajax call. Of course, if I do async:false and return it directly I get it but I don't want to do that.
If I just ...
0
votes
2answers
59 views
How can I eliminate this ugly duplicate code during a retry-Ajax scenario?
Due to the callback-invoking nature of getGamesByPlayerId (which happens to be an Ajax call), I can't seem to figure out how to eliminate the duplicate code in the following:
// Load the player's ...
3
votes
3answers
50 views
Ajax callback dunce
I am having difficulty understanding how to implement a callback function. I've search around alot and found a lot of material on the subject but nothing that I've been able to implement in my jQuery ...
0
votes
4answers
51 views
jquery ajax sucess data access embedded objects
{ "id": "36", "title": "Dr","firstname": "Ian", "lastname": "Fletcher", "permissions": { "permissionlist": [{ "title": "Images", "accessid": "152"},{ "title": "Documents", "accessid": ""}] } }
I ...
0
votes
0answers
114 views
Wait for an onload event before POST (NO jQuery!)
I have a function which uses an onload event, lets say it looks like this
var doOnload = function(){
onload = function(){
//do stuff and return data
return data;
}
onerror ...
2
votes
1answer
509 views
Multiple ajax calls from array and handle callback when completed
I have used promises in jQuery slightly before - but I am having trouble applying it to this scenario. I prefer to use the $.when() and $.done() methods to achieve this.
From what I understand I need ...
0
votes
2answers
69 views
AJAX request variable issue [duplicate]
Possible Duplicate:
jQuery global variable problem
I'm doing a jQuery AJAX call and I want to save into a variable the response. However this variable is not having the value of the ...
0
votes
1answer
419 views
Ajax/Jquery - Ajax processing before callback, beforeSend, ajaxStart, .always
I am currently having an issue with jquery's ajax call. What i'm trying to do is empty a few div's, hide a container, and then call the requested Ajax code to populate the div once again, and show it. ...
2
votes
2answers
334 views
Passing a callback function with included parameters?
I have this below code..
function getGrades(grading_company) {
if (grading_company == 'Not Specified') {
// Remove grades box & show condition box
showConditionBox();
} ...
2
votes
1answer
495 views
Passing a callback function to jQuery AJAX success function
I'm trying to pass in a function to run when the AJAX call is successful, however it's not working as it say's that "callback is not a function".
Example:
Calling Code:
getGrades(var);
JS:
...
1
vote
2answers
140 views
Javascript callback being fired before function is complete (no jQuery)
I have 2 javascript functions, the first being a function which loads ajax content (via another function), and a second which is a callback function. They look like:
function createReply(callBack){
...

