Skip to content

Instantly share code, notes, and snippets.

@house9
Created June 28, 2011 00:03
Show Gist options
  • Save house9/1050158 to your computer and use it in GitHub Desktop.
Save house9/1050158 to your computer and use it in GitHub Desktop.
jquery-ajax-coffeescript
jQuery ->
console.log "document loaded"
$('form').submit (e) ->
console.log "form submit"
e.preventDefault()
form = this
$.ajax $(form).attr('action'),
type: "POST"
data: $(form).serialize()
success: ->
console.log "success"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment