The search for the perfect lounge-to-street look is over. Our iconic sweats have classic details, like an elastic waistband and cuffs, plus a relaxed fit that reads laid-back but not slouchy (since this is a unisex style, we recommend sizing down to achieve this look). The French terry feels smooth on the outside and fleecy on the inside. And may we suggest a matching Accolade Hoodie or Crew Neck? Find your fit and see all the ways to style it. '
});
})
function addtocart(qty,skus,key,unique){
var data = {
"productId":"633810",
"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:'633810',
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:'633810'
},
success: function (e) {
console.log(e);
if(e.error == 1){
window.location.href = "/account/login";
}else{
layer.msg("¡Añadido exitosamente a la lista de deseos!");
}
}
});
});