Вот код:
for(x = 0; x < len; ++x){
str += $('<li></li>', { data: { 'eq' : x }, }).append(
$('<img>', { src: jsonres[x]['url'], }),
$('<p></p>', { text: jsonres[x]['name'], }),
$('<p></p>', { text: 'Цвет: '+jsonres[x]['color'], }),
$('<p></p>', { text: 'Размер: '+jsonres[x]['size'], }),
$('<p></p>', { text: jsonres[x]['price'], }),
$('<span></span>', {})
);
}
ul = $('<ul></ul>', { id: 'saleShow', }).append( str );
Как его реализовать, а то в такой версии не фурычит.