cesardpaz
6/4/2019 - 3:47 AM

Ajax JS

$.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');
	}
});