Created
February 25, 2014 06:23
-
-
Save alanmulhall/9203761 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//http://techoctave.com/c7/posts/60-simple-long-polling-example-with-javascript-and-jquery | |
(function poll(){ | |
$.ajax({ url: "server", success: function(data){ | |
//Update your dashboard gauge | |
salesGauge.setValue(data.value); | |
}, dataType: "json", complete: poll, timeout: 30000 }); | |
})(); |
Hi
He
Wazzupp
Hey
He
Yow
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello