Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. $.ajax({
  2. url:'obtenersubastas',
  3. dataType:'json',
  4. type:'get',
  5. cache:true,
  6. success: function (response) {
  7. $(response).each(function(index,value) {
  8. console.log(response[index].nombre);
  9. console.log(response[index].descripcion);
  10. console.log(response[index].cant_actual);
  11. console.log(response[index].images);
  12. console.log(response[index].data_final);
  13. console.log(response[index].id);
  14. });
  15.  
  16. },
  17. });
  18.  
  19. <div class="nombres"></div>
  20.  
  21. $(".nombres").html(response[index].nombre);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement