0
votes
1answer
31 views

JQuery polling a database and changing dom element if true

OK I created my self a validation.php this will return {"exists":false,"data":"", "id":101} or {"exists":true,"data":"www.example.com/thumbnail1.jpg", "id":101} The script is below //no ...
0
votes
1answer
31 views

Polling every 10 seonds

In the code below, I had the expectation that this would create a polling loop that would fire off every 10 seconds to get a "job status report" from the server. It seems it is creating over 100 calls ...
0
votes
1answer
39 views

how to listen for submit event.

Hi i want to know how to tell if a event was fire within 2.5 seconds. here is external function written by some other developer. function validateAndSubmit() { if ...
-3
votes
1answer
419 views

PHP/AJAX/LONG POLLING Chat between 2 logged users only ( like facebook ) [closed]

I'm Magikano and I am making at this moment a new social network like Facebook and I am good in PHP but I am bad in ajax and I want to make a chat between 2 users only like Facebook when you click on ...
0
votes
1answer
131 views

Long polling using jQuery in Rails with turbolink

I am following an instruction to create long polling using jQuery AJAX request here. Below is my code: :javascript (function poll(){ $.ajax({ url: $("comment").data("url"), success: ...
1
vote
0answers
90 views

How to update values of a row in a table after polling for new incoming data in a loop

I had already implemented polling for this database in java and reads all incoming data which resides in the outgoingqueue. Now I have problems in updating the polled rows, which is like I just change ...
0
votes
1answer
174 views

Tomcat Ajax - Where to start reading? [closed]

Im trying to develop a simple web based chat program in java. Im using spring, tomcat, hibernate, javascript, ajax, and jquery. Im new to all of these technologies. I asked a question here on SO. I ...
2
votes
3answers
284 views

Simple/efficient approach to polling with PHP/JS/MySQL

I have a simple web app which lists a private group of people and the last message they posted. I'm currently just polling by using Ajax to hit a php script every 30 seconds, which gets all people ...
2
votes
3answers
226 views

How to stop javascript ajax requests in inactive Iframe?

I have made Website, where various other pages are built-in as "apps" with i frames: <iframe id="frame1" src="./app1.php"> <iframe id="frame2" src="./app2.php"> In these apps, there is ...
0
votes
0answers
185 views

PHP + jQuery + MySQL async fetching data, script ends unexpected

I'm trying to use jQuery's $.ajax() to GET a PHP page, on a based interval, which prints the latest enteries from a MySQL table. If there are new enteries, they are printed on the page, if not, "NaN" ...
1
vote
3answers
1k views

JQuery AJAX Polling Syntax

I'm a bit green, so please bear with me. I need to poll a SharePoint webservice until it returns a value. I believe that I have formatted my code incorrectly. If there is a pre-existing thread that ...
0
votes
1answer
153 views

PHP: Monitor text file for changes

I'm working on a project that parses tweets and saves them to a db. I'd also like to create a local, front end interface that will live update when the tweet comes in (no page reloads etc.) I'm using ...
2
votes
4answers
232 views

Do we need setTimeout for short polling?

If I want to implement short polling like this: function firstCall(){ $.ajax({ ... success: function(response){ if (response.OK == "OK"){ secondCall(); ...
0
votes
2answers
66 views

Try to revisit the URL in javascript

I want to visit certain REST URI. $.ajax({ type: "POST", url: url + "result/" + ticket_id, success: function(data) { setTimeout(function(){pollResponse(url,data.id);}, 3000); ...
0
votes
1answer
181 views

Periodically Polling Database with Rails View Updating without refresh

We're building a statusboard for all our external servers. Each entry in our database has references to OS, Software version, etc. These values are ever changing and we'd like to have the page ...
3
votes
1answer
528 views

Jquery PHP mySQL ajax method to sync data to two clients?

I'm developing an app where two or more separate clients will exchange specific information via a server transfer in real time by all clients invoking the process at approximately the same time ...
1
vote
0answers
244 views

jQuery re-sending AJAX request?

I have a weird issue with an jQuery AJAX jQuery request. When we generate reports on our site, it can take a while, so we have a status bar that we update with polling. However, what I'm seeing is ...
0
votes
3answers
94 views

Dynamically append content to an element with jQuery

I would like to be able to have an ajax get update the text in a span tag each time it is fired. $.ajax({ type: 'GET', url: "JSON URL", cache: false, contentType: ...
3
votes
1answer
159 views

How do I start and stop javascript-initiated queries in my Rails app?

I have an app that needs to periodically update a "news" area of the screen as long as my Publisher object has news. When there is no news, that area of the screen is hidden (or simply not rendered), ...
3
votes
1answer
1k views

AJAX Polling - Check for new database entry

I'm polling my database every one second and I need it to do something only after a new entry has been submitted to the database; it can't just re-pull everything. Any help?
15
votes
5answers
11k views

jQuery, simple polling example

I'm learning jQuery, and I'm trying to find a simple code example that will poll an API for a condition. (ie, request a webpage every few seconds and process the results) I'm familiar with how to do ...
1
vote
3answers
237 views

How do you call an ajax function from within the same function?

I want to create a polling ajax function that calls the same function all over again if a certain condition is met. How would I do this? I'm using JQuery.
0
votes
2answers
1k views

Polling AJAX request and sending data between javascript and server

I need to send a polling AJAX request to the server and send some data (which I think I'll just pass in the url) to the server. I'll have a number of different resque background jobs running, and I ...
1
vote
1answer
453 views

CouchDB - Continuous feed using jQuery

After reading a similar questions here, I'm curious as to whether this is at all possible? I understand I can make the below work, by wrapping in a setInterval function, which repeatedly calls the ...
1
vote
2answers
256 views

Polling MySQL and fading elements in a out

The code below works just fine, does exactly what it says on the tin. It just doesn't do it very well. The project involves a master and slave system. One is a large screen map, the other a small ...
3
votes
3answers
268 views

jquery onscreen run offscreen pause

Is there a way to pause a long polling script when someone leaves a page up but is not viewing it? So if I have multiple tabs or windows of the app open only the one I am actively viewing would have ...
2
votes
2answers
436 views

javascript object equality / identity - comparison

I've got this code update_questions: function() { alert("UPDATING!!"); }, poll: function() { var self = this; $.post( ...
2
votes
2answers
2k views

jquery polling with smart poll plugin

I'm trying for the life of me to get this plugin to work but I'm not understanding the status function so retry is not firing. $.poll(10000, function(retry){ $.get('willfail', function(response, ...
1
vote
3answers
835 views

jquery polling solution

UPDATED: I'm trying to get jquery smart poll to work for me. It works fine if the process is ready in the first 2 seconds but if not, it does not retry as it's supposed to. I'd also like to make ...
2
votes
2answers
395 views

What are the differences between jQuery polling and the Faye server?

I encountered both the faye server and jQuery polling in those two railscasts. It seems to me that they are two different techniques that ultimately accomplish the same thing. When would you want to ...
0
votes
2answers
306 views

How do I return outside of the function?

How do I return a value from within $.ajax to the outer function? In the example below, I want getProxySrc() to return streamSrc. Also, I don't want to tie up javascript / the page while it's ...
0
votes
5answers
2k views

Can Jquery update/insert new table rows when new database entry?

I have a basic html table thats populated using php/mysql. Can anyone suggest how I can update or insert a new table row at the top of the table when a new row is inserted into my database using ...
1
vote
2answers
647 views

Detecting when the back/forward button is pressed without polling? (hash change)

I have a page that changes hashes quite a bit, and I'm wanting to add the functionality that when the back/forward button is pressed (as in, the hash changes), a function runs. I've seen that you can ...
1
vote
5answers
4k views

How do I do realtime database polling in MySQL/PHP?

I have a Ruby script which is constantly updating a MySQL database. I want to show the "mysql_num_rows()" in realtime. So as an entry is entered into the database by the Ruby script I want the PHP ...
0
votes
3answers
209 views

Multiple pages running same polling script

I have a jQuery script in my header that updates the last_active datetime database field every 60 seconds. The problem is, if the user has multiple windows open then this puts extra pressure on the ...
2
votes
3answers
495 views

Trying to increment a javascript counter when using polling ajax http requests

I have a script that is running every 5 seconds, as a polling ajax http request. I want to send an incrementing amount through it, on each request (1,2,3,4,5,6 etc...) I have this so far, but the ...
0
votes
3answers
402 views

Does refreshing mysql query by jQuery ajax crashs the database?

I'm using jQuery .ajax function to load php page with a mysql query in it that selects data from the database, but my question is: Does refreshing mysql query by jQuery ajax crashs or tiring the ...
3
votes
1answer
2k views

Jquery Ajax calls crashing Internet Explorer?

I must admit, this is my first post on this site, so I apologise in advice if I do something wrong (formatting etc). Anyway, I'm creating a kind of mmo using javascript (and jQuery), and so far ...
13
votes
2answers
10k views

Server polling with JavaScript

What is best practise for polling server with JavaScript for application that needs to refresh data very rapidly? I'm using jQuery for front-end and Java Spring Framework for backend. Example of ...
0
votes
2answers
271 views

Elegant way to perform polling while user is waiting in real time

What is an elegant way to perform polling while the user is waiting? This is what i mean: 1) User clicks a bottom 2) Server performs an action that might take a few minutes 3) Want the page to ...
0
votes
1answer
87 views

is there something wrong in my server polling method?

im trying to get a post from a php file when it has something from the database. this is the js script that sends the post request (im using jquery and the smartupdater plugin) function update(){ ...
2
votes
2answers
169 views

Live connection between server and client in a web page

How do I implement a real time updating /live html streaming method in applications like FriendFeed, Stackoverflow, Blip.fm ? Is it done using a jQuery/Ajax request from client to server every X ...
0
votes
2answers
402 views

How can I make my javascript chat polling script be more efficient?

For some reason this check for new chat messages causes a larger amount of browser (and to some extent server) load than I would expect. Anyone see any ways that I can make it more efficient, to ...
1
vote
1answer
356 views

when long polling, Why are my other requests taking so long?

The client makes 2 concurrent requests. (1 which takes 60 seconds - long polling) and another which is NOT long polling - supposed to return right away. It does return right away when I'm not doing ...
0
votes
1answer
226 views

jQuery Update and Scroll like Polling

Looking for something written in jQuery which allows polling or a plugin which would allow data updates similar to this website. Anyone got any ideas of something like this in jQuery ? Or how to ...
2
votes
2answers
2k views

jQuery - polling of a job queue

I have a database table which contains a queue of jobs. A separate program processes these jobs. I want to provide a webpage for users to watch the progress of the queue. The Server side scripting to ...
0
votes
3answers
760 views

AJAX polling of a URL returning JSON doesn't seem to return fresh responses (using jQuery $.ajax() method)

My project requires polling a certain URL for a JSON response, using AJAX. The first AJAX request that I make alerts the server that I want some JSON content, and it begins building and cacheing a ...
32
votes
3answers
19k views

jQuery AJAX polling for JSON response, handling based on AJAX result or JSON content

I'm a novice-to-intermediate JavaScript/jQuery programmer, so concrete/executable examples would be very much appreciated. My project requires using AJAX to poll a URL that returns JSON containing ...