Skip to content

Instantly share code, notes, and snippets.

@alkema
Created December 13, 2011 22:45
Show Gist options
  • Save alkema/1474298 to your computer and use it in GitHub Desktop.
Save alkema/1474298 to your computer and use it in GitHub Desktop.
coffescript-jquery-ajax-poller
jQuery ->
getFeeds = ->
keywordId = $("#keyword").attr("data-id")
$.get("/keywords/#{keywordId}/feeds.html", (data)->
if jQuery.isEmptyObject(data)
setTimeout(getFeeds, 5000)
else
$('#feeds').html(data)
)
$ -> setTimeout(getFeeds, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment