Zadzwoń do nas
';
res += '
Produkty w schowku:
';
if(data.items)
{
res += '';
res += '
';
//PODSUMOWANIE KOSZYKA
//res += '- ';
$each(data.items_options, function(value,key) {
$each(value, function(item,opt) {
res += '
- ';
res += '
- ';
res += '';
res += '
- ' + data.products_name[key] +'' + data.price_brutto[key] +''; if(opt!=0) { res += '
- ';
$each(data.options_tname[key][opt], function(optname,optid) {
res += '
';
res += ' - '; res += '
';
});
});
res += '
345.00 PLN
';
res += ' ';
}
else
{
res += 'Brak produktów w schowku
';
}
$('#header_wishlist .cart-preview').html(res);
},"json");
}
})
.mouseout(function() {
$('#header_wishlist .cart-preview').fadeOut(0);
});
});