Skip to content

Instantly share code, notes, and snippets.

@conanak99
Last active June 22, 2016 23:16
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 conanak99/223894441fe9cdb668c3b0e363592692 to your computer and use it in GitHub Desktop.
Save conanak99/223894441fe9cdb668c3b0e363592692 to your computer and use it in GitHub Desktop.
// Truyền callback vào hàm ajax
var callback = function(image){
console.log(image);
};
ajax.get("gaixinh.info", callback);
// Có thể viết gọn như sau
ajax.get("gaixinh.info", function(image) {
console.log(image);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment