Created
June 13, 2015 17:03
-
-
Save NrI3/8da8ed9364946e3cae45 to your computer and use it in GitHub Desktop.
Cargando un objeto json que contiene una lista de imagenes en una sola peticion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.ajax({ | |
url: "req.php?req=test", | |
success: function(data) { | |
global['data'] = data; | |
console.log('descargo'); | |
i = new Image(); | |
i.src = data.imgList.imagen1; | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment