gempir

Untitled

Aug 18th, 2016
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function some(callback) {
  2.     $.get("https://some.txt", function(data){
  3.         callback(data);
  4.     });
  5. }
  6.  
  7. some(function(data) {
  8. // do stuff with data
  9. });
Advertisement
Add Comment
Please, Sign In to add comment