clearall
Unisex multi-pocket belt made from breathable, durable and natural Cotton fabric. Adjustable, it also comes with lots of handmade details and pockets to keep all your valuables safe in style.
- Main zipped pocket: 4.7’’ x 7.5’’ x 1’’ (12cm X 19cm X 3cm), protected by a flap, with custom-made metal snap button closure.
- Medium pocket: 3’’ x 5.5’’ x 1’’ (8cm X 14cm X 3cm), protected by a flap, with hook and loop fastener including custom-made metal snap button closure.
- Hidden, zipped back pocket: 4.7’’ x 6.3’’ x 1’’ (12cm X 16cm X 3cm).
- Comes with 1 small, 'secret' pocket.
- Custom-made metal ring, for extra hooking.
- Replaceable belt buckle.
- Adjustable to fit your size with custom-made snap buttons.
Material: Cotton Twill 16/20.
'
});
})
function addtocart(qty,skus,key,unique){
var data = {
"productId":"414912",
"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:'414912',
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:'414912'
},
success: function (e) {
console.log(e);
if(e.error == 1){
window.location.href = "/account/login";
}else{
layer.msg("Add favorite successfully!");
}
}
});
});