Guest User

Untitled

a guest
Jun 25th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. var id = $(this).attr('data-id');
  2. $.getJSON("/NfDocuments/MedicalInput", { id: id },
  3. function (data) {
  4. $('#medInput').empty();
  5. $.each(data, function () {
  6. // $("#medInput").append("'" + this.Id + "'");
  7. //console.log(this.Id);
  8. var medInput = document.getElementById("medInput");
  9. medInput.value = this.Firstname + ' - ' + this.Zip + ' ' + this.Address1 + ',' + this.City + ', ' + this.State + ' - ' + this.Mobile;
  10. });
  11. });
Add Comment
Please, Sign In to add comment