I am looking for a way to have a .getJSON, call another function which in return conducts another .getJSON call.
I'm iteratively calling a JSON method on my Controller and want to finish this iterative cycle if a certain condition is met. If this condition is met (can only be checked from within the JSON method), I want to call another JSON method on the Controller (persisting some data etc.).
However, the second JSON call is never made. When I'm callin the second function manually outside of the first function, the call is made correctly.
Any hints on that or is my design utterly flawed anyways?
EDIT
Chyeaah.. forgot the code.. :D
<script type="text/javascript">
$(window).load(function() {
var poller = setInterval(tick, 1000);
});
function tick() {
$.getJSON("votingtick", function(voting) {
if (voting != null) {
if (voting.timeleft < 0) {
clearInterval(poller);
finalize();
} else {
$("#timeout").text(voting.timeleft);
$("#voters").text(voting.votingCount);
}
}
});
}
function finalize() {
$.getJSON("votingend", function(voting) {
if (voting != null) {
$("#finished").fadeIn('fast');
}
});
}
</script>
Think this is most relevant, no?

votingto see if it contained anything? – Neal Jun 7 '11 at 16:59votingin thetick()fn – Neal Jun 7 '11 at 17:05