Skip to content

Instantly share code, notes, and snippets.

@jeffdonthemic
Created July 18, 2014 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffdonthemic/a57cc73cb37175dc0aa7 to your computer and use it in GitHub Desktop.
Save jeffdonthemic/a57cc73cb37175dc0aa7 to your computer and use it in GitHub Desktop.
jQuery ajax
<script>
// <![CDATA[
$(document).ready(function(e) {
// get the leaderboard
$.ajax({
type: 'GET',
url: "http://tc-leaderboard.herokuapp.com/cisco",
success: function(data) {
console.log('CISCO LEADERBOARD!!');
console.log(data);
},
failure: function(err) {
console.log('Could not fetch leaderboard: ' + err);
}
});
// ]]>
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment