Guest User

Untitled

a guest
May 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. loadData: function(query){
  2. var ret= "hello kitty";
  3.  
  4. $.ajax({
  5. type: "GET",
  6. url: "search.php",
  7. data: {
  8. "cmd": query
  9. },
  10. success: function(data){
  11. ret = {status: "success", data: data};
  12. },
  13. error: function(){
  14. ret = {status: "error", data: "load errr"};
  15. }
  16. });
  17.  
  18. return ret;
  19. }
Add Comment
Please, Sign In to add comment