jquery.$_getJSON 239 B

1234567891011
  1. # This was cloned from a TextMate bundle for yasnippet.
  2. #name : $_getJSON
  3. #key : $.getJSON
  4. #condition : (when (boundp 'jquery-project) jquery-project)
  5. # --
  6. \$.getJSON(
  7. '${1:url}'${2:,
  8. ${3:data}}${4:,
  9. function(json) {$5}}
  10. });
  11. $0