Guest User

Untitled

a guest
Apr 25th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $.ajax({
  2. url: "http://localhost:8080/speed-search-api/keys/getAll",
  3. crossDomain : true,
  4. dataType : "jsonp",
  5. type : "GET",
  6. success: function(data){
  7. document.getElementById("demo").innerHTML = data[0].keyName;
  8. }
  9. });
Add Comment
Please, Sign In to add comment