The Women’s BREAK-THRU Hoody features a soft, durable, and cool-to the-touch fabric that provides a comforting stretch for enhanced freedom of motion. A strategically placed back vent increases breathability to prevent over-heating. Maximum sun protection (UPF50+), KHL’s signature thumb loops, and fabulous seasonal colors make the BREAK-THRU the perfect spring layer.
ADVANCED FABRICS
- Fabric: 84% Nylon, 16% Spandex | 180 GSM
- Cool-to-the-touch nylon fabric
- UPF 50+
DIFFERENT BY DESIGN
- Vented back yoke for maximized breathability
- Full zip front for easy layering
DIFFERENT BY CONSTRUCTION
- 2 concealed stash pockets
- KHL signature thumb loops
- Stay dry and cool on morning neighborhood runs with a breathable'
});
})
function addtocart(qty,skus,key,unique){
var data = {
"productId":"1454430",
"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:'1454430',
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:'1454430'
},
success: function (e) {
console.log(e);
if(e.error == 1){
window.location.href = "/account/login";
}else{
layer.msg("Add favorite successfully!");
}
}
});
});