Our seersucker safari jacket is a perfect layering piecefor spring and summer evenings.
Crafted in Italy from a lightweight blend of 90% wool and 10% linen woven by Loro Piana, this unstructured jacket features two flap pockets with buttons on the chest and two patch pockets on the waist,cuffs with a single-button fastening andoneinternal patch pocket.
Composition: 90% wool, 10% linen woven by Loro Piana, 180g
Color: Blue
Flap pockets with buttons on the chest, patch pockets on the waist
Unlined
Made in Italy
Model is 191 cm and wears sizeL / 50 (IT-EU) / 40 (US-UK).
Care instructions:
- '
});
})
function addtocart(qty,skus,key,unique){
var data = {
"productId":"644509",
"cartNum":qty,
"new":0
};
if(key){
data.uniqueId = skus[key].unique;
}
if(unique){
data.uniqueId = unique;
}
$.ajax({
url:"?m=jqajax&act=addtocart",
method:"POST",
dataType:"JSON",
data:data,
success :function(e){
layer.closeAll();
console.log(e.error);
if(e.error == 0){
$(".right-mini-cart-box").html(e.html);
$(".CartCount").html(e.data.count);
$('.drawer-toggle-cart').trigger("click");
}else{
layer.msg(e.msg);
}
}
});
}
function addto_sku(qty,skus,key){
$.ajax({
url:"?m=jqajax&act=addto_sku",
method:"POST",
dataType:"JSON",
data: {
id:'644509',
sku: key,
},
success :function(e){
if (e.unique){
let unique = e.unique.replace(/'/g, '');
addtocart(qty,"","",unique);
}
}
});
}
$(".cart-wishlist").click(function(){
$.ajax({
url: "?m=jqajax&act=addwish",
method: "POST",
dataType: "JSON",
data: {
id:'644509'
},
success: function (e) {
console.log(e);
if(e.error == 1){
window.location.href = "/account/login";
}else{
layer.msg("Add favorite successfully!");
}
}
});
});