Skip to content

Instantly share code, notes, and snippets.

View rkstedman's full-sized avatar

Rachael rkstedman

View GitHub Profile
@rkstedman
rkstedman / gist:81abae9149a72b0ea2f8
Last active August 29, 2015 14:12 — forked from ivansifrim/gist:22faebb250bc009beb0a
Accessing AJAX response
$(function() {
function getFormData(cb){
jQuery.ajax({
type:'GET',
url: 'http://localhost:3000/s3signature.json',
error: function(jqXHR, textStatus, err){
console.log('error!', textStatus);
cb(err);