Last active
April 10, 2016 18:12
-
-
Save DominicBreuker/5e7348583690a8cc553c9c9ec4e52e5d to your computer and use it in GitHub Desktop.
gs_spreadsheet_example
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
... | |
$.ajax({ | |
url: "https://script.google.com/macros/s/AKfycbz4aFabJ80gajXFBcXlFLpR6n9ad9GHs4UcT6ux9w7RAYcI_9w/exec", | |
// this was 'url: "././mail/contact_me.php"' | |
type: "POST", | |
data: { | |
name: name, | |
phone: phone, | |
email: email, | |
message: message | |
}, | |
... | |
success: function() { | |
// Show success message on website | |
... | |
}, | |
error: function() { | |
// Show error message on website | |
... | |
}, | |
}) | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment