Skip to content

Instantly share code, notes, and snippets.

@ak64th
Created June 8, 2017 10:42
Show Gist options
  • Save ak64th/b1d11d867246387f94e7f35e7a4f8273 to your computer and use it in GitHub Desktop.
Save ak64th/b1d11d867246387f94e7f35e7a4f8273 to your computer and use it in GitHub Desktop.
Mock a jquery ajax request
const loadData = function loadData(){
let deferred = $.Deferred();
deferred.then((data) => console.log(data));
deferred.resolve(mockData);
return deferred;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment