Ajax popluate form with data of json response

Ajax popluate form with data of json response

hi , sorry for english :

My response of consol.log is:

{id: "4", name: "Marco Rossi", email: " marco_rossi@info.it", phone: "333333333"}



how can i populatemy form :
<form method = "post" action = "#" >  
<input name = "name" type = "text" id = "name" value = "" />  
<input name="email" type="text" id="email" value="" />
<input name="phone" type="text" id="phone" value="" />
<button class='add' type "submit" > </form>


This is my ajax:

  1.             $('.add').click(function() {
  2.                 
  3.                
  4.                $id_user = $(this).val();

  5.                $.ajax({
  6.                  type: "POST",
  7.                  url: "<?=site_url(); ?>index.php/ajax_call/return",
  8.                 data: {                  
  9.                   id_user:$id_user
  10.                  },
  11.                  dataType: "json",
  12.                  success: function(msg)
  13.                  {
  14.                     console.log(msg);
  15.                  },
  16.                  error: function()
  17.                  {
  18.                    alert("Chiamata fallita, si prega di riprovare...");
  19.                  }
  20.                });


  21.             });