I recieve an array with AjaxPetitions Array[0],Array1, Array[2] and recieve the information correctly.
$.ajax({
url:'obtenersubastas',
dataType:'json',
type:'get',
cache:true,
success: function (response) {
$(response).each(function(index,value) {
console.log(response[index].nombre);
console.log(response[index].descripcion);
console.log(response[index].cant_actual);
console.log(response[index].images);
console.log(response[index].data_final);
console.log(response[index].id);
});
},
});
I need to send this information to a class called .nombre html , could anyone helps to me ?
UPDATE
with append I have a problem , i need to follow a style in the page and the result is this.
