diff --git a/snippets/coffee.snippets b/snippets/coffee.snippets index aca6e81..7ed1ebf 100644 --- a/snippets/coffee.snippets +++ b/snippets/coffee.snippets @@ -93,3 +93,17 @@ snippet req # Export snippet exp ${0:root} = exports ? this + + +snippet ajax + $.ajax + url: "${1:mydomain.com/url}" + type: "${2:POST}" + dataType: "${3:xml/html/script/json}" + data: ${4:data} + complete: (jqXHR, textStatus) -> + ${5:// callback} + success: (data, textStatus, jqXHR) -> + ${6:// success callback} + error: (jqXHR, textStatus, errorThrown) -> + ${0:// error callback}