I used to dismiss the idea of a tool belt .... until I had one. They make a lot of sense for jobs around the garden - when you need multiple items to hand. Just load up with the tools you might need and save yourself the endless trips back and forth to the shed or greenhouse.
Sizing:
- These are sized with the American workwear market in mind so
- S/M - from a 28' waist up to a 34/36'
- L/XL - from 34' up to around a 44' waist
- Edd: I'm around a 35' waist - sometimes I can wear 34' jeans, sometimes a 36'. I wear a 36' in the Carhartt Bib Overalls. I can wear both sizes of the tool belt - the S/M at its maximum length and the L/XL at its smallest. I've chosen to go with the S/M as I personally prefer not to have theexcessstrap on the L/XL
- Lou: I'm a size 10-12(29' waist) and I wear the S/M.
Product details:
If you want to, as it's cotton canvas, it can easily be made waterproof by applying '
});
})
function addtocart(qty,skus,key,unique){
var data = {
"productId":"667060",
"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:'667060',
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:'667060'
},
success: function (e) {
console.log(e);
if(e.error == 1){
window.location.href = "/account/login";
}else{
layer.msg("Add favorite successfully!");
}
}
});
});