I want to load all image from array and return into this field instead link parameter .src of Object Image().
Example of my array:
var slides = {
"123456": {
"type": "type",
"material": [ "material" ],
"size": [ "size"],
"price": "price",
"color": {
"#000000":"jpg.jpg",
"#C1876B":"jp.jpg",
"#ffffff":"j.jpg",
"#B5B8B1":"jp.jpg",
"#4D220E":"jpg.jpg"
}
},
"123457": {
"type": "type",
"material": [ "material" ],
"size": [ "size"],
"price": "price",
"color": {
"#000000":"jpg.jpg",
"#C1876B":"jp.jpg",
"#ffffff":"j.jpg",
"#B5B8B1":"jp.jpg",
"#4D220E":"jpg.jpg"
}
},
If it so ease - sorry me, but I can't to do it myself.
More details: I have an array on page type of shopping-page. I load only first image and don't touch others. They will load only after user click on other color. But I want don't spend time and load all image into array after page load. Is it possible?