I have Ajax like this.
 var idlapkondisi = $('#id_laporan_pemeriksa').val();
  var data = $('#myFormkondisi').serialize();
  $.ajax({
                type:'ajax',
                method:'POST',
                url:url,
                dataType:'json',
                success:function(response){
                },
                error:function(response){
                 console.log(response);
                }
              })  
})
how can i make 2 value in ajax data while the value is a serialize data form ? does the format like this ?
 data:{data,idlapkondisi:idlapkondisi},
 
     
     
    