CARRYOVER STYLE. The ultimate bestseller and “must have” ski pants, with extra leg length
- 3-layer softshell with 4-way stretch (WB400 material from Schoeller)
- Bonded fleece at inside
- Water repellent
- Windproof
- Breathable
- Maximal comfort
- Permanent support
- Long lifetime
- Separate belt
- Zippers at backside hem
- Snow catchers at inside of bottom
- This style is also available in a regular length in style GB001-70-234, which is 4cm shorter
- Fabrics: 49 % polyester, 30 % polyamide, 12 % polyurethane, 9 % elastane
- Lining: 100 % polyamide
Available also in regular length. See it '
});
})
function addtocart(qty,skus,key,unique){
var data = {
"productId":"879394",
"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:'879394',
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:'879394'
},
success: function (e) {
console.log(e);
if(e.error == 1){
window.location.href = "/account/login";
}else{
layer.msg("Add favorite successfully!");
}
}
});
});