Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1.  
  2. function getValues(id)
  3. {
  4. $(document).ready(function () {
  5. // Znów AJAX request
  6. $.getJSON('http://localhost:56658/api/api/students/' + id)
  7. .done(function (data) {
  8. var items = [];
  9. items.push(data.Name);
  10. items.push(data.Surname);
  11. items.push(data.Email);
  12. items.push(data.Index);
  13. return items;
  14. });
  15.  
  16. });
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement