These traditional crossing line jackets are a must have for the new initiate. As with all of our crossing line jackets, the letters are sewn on applique and the organizational emblem is fully embroidered into the garment. This garment is sized for adults (men) and is constructed of 100% nylon taffeta and lined with 100% polyester brushed tricot. It features a snap front, raglan sleeves, byron collar, elastic cuffs, open bottom with NO drawcord and reinforced slash front pockets.
Note: Because of the large lettering sewn on the right side, the pocket on that side may not be usable.
'
});
})
function addtocart(qty,skus,key,unique){
var data = {
"productId":"413839",
"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:'413839',
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:'413839'
},
success: function (e) {
console.log(e);
if(e.error == 1){
window.location.href = "/account/login";
}else{
layer.msg("Add favorite successfully!");
}
}
});
});