Skip to content

Instantly share code, notes, and snippets.

@cannikin
Created March 24, 2009 17:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save cannikin/84242 to your computer and use it in GitHub Desktop.
Save cannikin/84242 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
var since = '<%= @since.to_f %>';
var updater = setInterval( function() {
new Ajax.Updater('notes','/poller', {
method:'get',
parameters:"since="+since,
insertion:'top',
onSuccess:function(r) { since = r.responseText; }
})
}, 4000);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment