Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. $.ajax({
  2. url: "/events/instructor/",
  3. type: 'POST',
  4. data: {
  5. instructorID: $(this).attr("id")
  6. },
  7. complete: function (data) {
  8. $("#name").html(data["responseText"]["name"]);
  9. $("#email").html(data["responseText"]["email"]);
  10. $("#photo").html(data["responseText"]["photo"]);
  11. $("#summary").html(data["responseText"]["summary"]);
  12. $("#url").html(data["responseText"]["url"]);
  13. }
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement