Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 298 Bytes

ajax-scaffold.md

File metadata and controls

25 lines (23 loc) · 298 Bytes

Jquery AJAX scaffold

The most common methods:

$.ajax(
  {
    url: 'example/',
    type: 'POST',
    data: {
      key: 'value'
    }
  }
)
.done(function(data) {
  //...
})
.fail(function(jqXHR, textStatus, errorThrown) {
  //...
})
.always(function() {
  //...
});