Skip to content

Instantly share code, notes, and snippets.

@rustyrazorblade
Created January 6, 2012 23:35
Show Gist options
  • Save rustyrazorblade/1573016 to your computer and use it in GitHub Desktop.
Save rustyrazorblade/1573016 to your computer and use it in GitHub Desktop.
### coffeescript
$('#nav_news_feed').click () ->
$.get '/api/history', (result) ->
alert result
## js
return $('#nav_news_feed').click(function() {
return $.get('/api/history', function(result) {
return alert(result);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment