Skip to content

Instantly share code, notes, and snippets.

@carlqt
Created May 7, 2014 11:30
Show Gist options
  • Save carlqt/544a5af3b2954f2909f1 to your computer and use it in GitHub Desktop.
Save carlqt/544a5af3b2954f2909f1 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$.ajax({
type: 'GET',
dataType: 'json',
url: 'http://localhost:3000/projects.json',
success: function(data, status, xhr) {
$.each(data, function(key, val){
console.log(data);
})
}
})
})
@ekankyesme
Copy link

occ

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment