Skip to content

Instantly share code, notes, and snippets.

@uutarou10
Created May 16, 2017 01:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uutarou10/ec67588aa3fb94d80ddd64245bae51b2 to your computer and use it in GitHub Desktop.
Save uutarou10/ec67588aa3fb94d80ddd64245bae51b2 to your computer and use it in GitHub Desktop.
$(() => {
$('#comment-area button').click(() => {
$.post('api/comment', {comment: $('#comment').val()})
.done(() => {
console.log('success!')
})
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment