$.getJSON('http://example.com', function(data) {
$.each(data.songs, function(index, song) {
//Paused & waiting for a click
$("#next").click(function() {
alert("Processing the next object...");
});
});
ユーザーが #next 要素をクリックした後にのみ、JQuery が次のオブジェクトを分析するようにします。
「タイムアウト」は必要ありません。次のオブジェクトに移動するためのユーザーアクションだけです