Skip to content

Instantly share code, notes, and snippets.

@egoist
Last active August 29, 2015 14:18
Show Gist options
  • Select an option

  • Save egoist/0543f981b707c0e030da to your computer and use it in GitHub Desktop.

Select an option

Save egoist/0543f981b707c0e030da to your computer and use it in GitHub Desktop.
Ajax post form
$.post('http://iambition.coding.io/contact/3be865fa-7297-46ff-82c0-46f30085aede', {
from: '[email protected]',
content: 'hello there!'
}, function(data) {
if (data.status == 'good') {
// do something...
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment