To bunt, or not to bunt, that is the question:
Whether 'tis more effective an at-bat to suffer
The Sliders and Fastballs of outrageous Pitchers,
Or to take Arms against a Sea of curveballs,
And by self-sacrificing advance the runner: to bunt, to swing
No more; and by a swing, to say we end
The hit-and-run, and the many chances at knocks
That a drawn in infield is heir to? 'Tis a consummation
Devoutly to be wished. To bunt to sacrifice,
To sacrifice, perchance not to hit; Ay, there's the rub,
For in that self-sacrifice, what pitches may have come,
When we have shuffled off this sportal soil,
Must give us pause...
$1 from your purchase is donated to '
});
})
function addtocart(qty,skus,key,unique){
var data = {
"productId":"1390157",
"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:'1390157',
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:'1390157'
},
success: function (e) {
console.log(e);
if(e.error == 1){
window.location.href = "/account/login";
}else{
layer.msg("Add favorite successfully!");
}
}
});
});