Skip to content

Instantly share code, notes, and snippets.

@emtoledo
Created November 12, 2012 17:01
Show Gist options
  • Select an option

  • Save emtoledo/4060530 to your computer and use it in GitHub Desktop.

Select an option

Save emtoledo/4060530 to your computer and use it in GitHub Desktop.
Experience Survey for Mobile Build Details
// Post to Experience Survey
$('label[for]').click(function () {
var el = '#' + $(this).attr('for');
var dataString = 'entry.0.group=' + $(el).val();
$.ajax({
type: "POST",
url: "https://docs.google.com/a/testflightapp.com/spreadsheet/formResponse?formkey=dHNBQ29aRmpXb3U2MUtDckxCMmVfdUE6MQ&embedded=true&ifq",
data: dataString,
success: function() {
$('#form-message').show();
$('#ss-form').hide();
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment