Created
November 12, 2012 17:01
-
-
Save emtoledo/4060530 to your computer and use it in GitHub Desktop.
Experience Survey for Mobile Build Details
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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