Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function getData(selector,callback) {
  2. return $.ajax({
  3. url:"myurl/logs?" + selector,
  4. jsonp: "callback",
  5. dataType: "jsonp",
  6. success: callback
  7. })
  8. }
  9.  
  10. getData().done(function(result){
  11. // my function here
  12. }
  13.  
  14. [{"startTime":"2014-10-08T11:57:10.968Z","endTime":"2014-10-08T11:57:15.169Z"}]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement