$.ajax({
url : fcvAdmin.url,
method : 'POST',
dataType: 'json',
data : {
action : 'action_update_ok',
id : id,
},
beforeSend: function(){
console.log('cargando');
},
success: function( data ) {
console.log(data);
},
error: function(){
console.log('error');
}
});