var products = []; products[210] = ["Pickleball Gloves", 14.93, "Pickleball Lover Shop", "

Crafted for optimal performance, these gloves feature a breathable and stretchable Microfiber synthetic leather palm and a flexible polyester-spandex blend on the back, which may help keep your hands cool and conform to their natural shape. The palm incorporates a foam pad and silicone particles, which may help provide excellent impact buffering and a secure grip, potentially assisting you in pushing your limits during play. Designed for maximum flexibility, these soft and lightweight gloves may help offer a natural and comfortable feel, making them an ideal choice for pickleball players of all ages.

", "", "15 Day", "Qty 1"]; products[211] = ["Pickleball Gloves", 29.93, "Pickleball Lover Shop", "

Crafted for optimal performance, these gloves feature a breathable and stretchable Microfiber synthetic leather palm and a flexible polyester-spandex blend on the back, which may help keep your hands cool and conform to their natural shape. The palm incorporates a foam pad and silicone particles, which may help provide excellent impact buffering and a secure grip, potentially assisting you in pushing your limits during play. Designed for maximum flexibility, these soft and lightweight gloves may help offer a natural and comfortable feel, making them an ideal choice for pickleball players of all ages.

", "", "15 Day", "Qty 2"]; products[212] = ["Pickleball Set", 19.93, "Pickleball Lover Shop", "

This comprehensive set includes two lightweight, high-quality paddles that may help players of all skill levels, from beginners to professionals. You'll also receive two outdoor and two indoor pickleballs, plus a handy carry bag for effortless transportation and storage. Crafted with a durable internal honeycomb core and a strong fiberglass surface, these pickleball rackets may help offer a perfect balance of lightweight design and powerful impact. Enjoy comfortable play thanks to the padded, sweat-absorbent grips, and rely on the overlapping edge protection to help maintain the paddle's integrity through countless games.

", "", "1 Bottle", "Qty 1"]; products[213] = ["Pickleball Set", 39.93, "Pickleball Lover Shop", "

Get ready to play anytime, anywhere with our convenient Pickleball Paddles Set! This comprehensive set includes two lightweight, high-quality pickleball paddles suitable for all skill levels, from beginners to professionals. You'll also receive two outdoor and two indoor pickle balls, plus a handy carry bag for effortless transportation and storage. Crafted with a durable internal honeycomb core and a strong fiberglass surface, our pickleball rackets offer a perfect balance of lightweight design and powerful impact. Enjoy comfortable play thanks to the padded, sweat-absorbent grips and rely on the overlapping edge protection to maintain the paddle's integrity through countless games.

", "", "15 Day", "Qty 2"]; products[214] = ["Pickleball Bag", 59.93, "Pickleball Lover Shop", "

Keep all your pickleball gear organized with our spacious Pickleball Bag. Its thoughtful layout, including multiple pockets like a roomy main compartment, extra-large secondary pocket, and a secure bottle pocket, may help you store everything efficiently. The versatile, reversible strap and quick-access design may help ensure comfortable wear and easy retrieval of your items during play. Built with scratch-resistant fabric and smooth zippers, this durable bag may help protect your gear, while a hidden back security pocket and reflective strips may help keep your valuables safe and enhance visibility in low light.

", "", "1 Bottle", "Qty 1"]; products[215] = ["Pickleball Bag", 109.93, "Pickleball Lover Shop", "

Keep all your pickleball gear organized with our spacious Pickleball Bag. Its thoughtful layout, including multiple pockets like a roomy main compartment, extra-large secondary pocket, and a secure bottle pocket, may help you store everything efficiently. The versatile, reversible strap and quick-access design may help ensure comfortable wear and easy retrieval of your items during play. Built with scratch-resistant fabric and smooth zippers, this durable bag may help protect your gear, while a hidden back security pocket and reflective strips may help keep your valuables safe and enhance visibility in low light.

", "", "15 Day", "Qty 2"]; products[216] = ["Pickleball Bag", 159.93, "Pickleball Lover Shop", "

Keep all your pickleball gear organized with our spacious Pickleball Bag. Its thoughtful layout, including multiple pockets like a roomy main compartment, extra-large secondary pocket, and a secure bottle pocket, may help you store everything efficiently. The versatile, reversible strap and quick-access design may help ensure comfortable wear and easy retrieval of your items during play. Built with scratch-resistant fabric and smooth zippers, this durable bag may help protect your gear, while a hidden back security pocket and reflective strips may help keep your valuables safe and enhance visibility in low light.

", "", "15 Day", "Qty 3"]; console.log(products); var orderedItems = []; var orderedTotQty = 0; var maxQty = 10; var shipRates = false; var handling = 0; var carturl = "cart.php"; //Funtion adds Items to Cart var addItem = function(itemId, Qty) { orderedTotQty = $.cookie('orderedTotQty'); if (!orderedTotQty) { orderedTotQty = 0; } Qty = parseInt(Qty); if(Qty > maxQty) { alert("Maximum " + maxQty + " of this product can be selected in a single order"); return false; } var order = $.cookie('order'); if (!order) { order = itemId + "-" + Qty; orderedItems[itemId] = Qty; } else { var itemExists = false; var items = order.split("|"); order = ""; for (var i = 0; i < items.length; i = i + 1) { var position = items[i].indexOf("-"); var prodId = items[i].substring(0, position); var quantity = parseInt(items[i].substring(position + 1)); if (order != "") { order += "|"; } if (prodId == itemId) { alert("Product already exist in cart"); return false; if((quantity + Qty) > maxQty) { alert("Maximum " + maxQty + " of this product can be selected in a single order"); return false; } quantity += Qty; order += prodId + "-" + quantity; itemExists = true; } else { order += prodId + "-" + quantity; } orderedItems[prodId] = quantity; } if (!itemExists) { if (order != "") { order += "|"; } order += itemId + "-" + Qty; orderedItems[itemId] = Qty; } } orderedTotQty = parseInt(orderedTotQty); orderedTotQty += Qty; $('.cartqty').html(orderedTotQty); $.cookie('order', order); $.cookie('orderedTotQty', orderedTotQty); var url = window.location.pathname; var filename = url.substring(url.lastIndexOf('/') + 1); if (filename == carturl) { showCart(false, 'add', itemId); } else { $(location).attr('href', carturl); } }; //Funtion decrements Items to Cart var removeItem = function(itemId, Qty) { Qty = parseInt(Qty); var order = $.cookie('order'); if (!order) { orderedItems[itemId] = 0; refreshRow(itemId); } else { var items = order.split("|"); order = ""; for (var i = 0; i < items.length; i = i + 1) { var position = items[i].indexOf("-"); var prodId = items[i].substring(0, position); var quantity = parseInt(items[i].substring(position + 1)); if (prodId == itemId) { quantity -= Qty; if (quantity > 0) { if (order != "") { order += "|"; } order += prodId + "-" + quantity; } itemExists = true; orderedItems[prodId] = quantity; refreshRow(itemId); } else { if (order != "") { order += "|"; } order += prodId + "-" + quantity; orderedItems[prodId] = quantity; } } } orderedTotQty -= Qty; $('.cartqty').html(orderedTotQty); $.cookie('order', order); $.cookie('orderedTotQty', orderedTotQty); var url = window.location.pathname; var filename = url.substring(url.lastIndexOf('/') + 1); if (filename == carturl) { showCart(false, 'remove', itemId); } else { $(location).attr('href', carturl); } }; //Funtion sets Item quantity on the Cart var setItemQty = function(itemId, Qty) { Qty = parseInt(Qty); if(Qty > maxQty || Qty < 0) { return false; } var order = $.cookie('order'); orderedTotQty = 0; if (!order) { orderedItems[itemId] = 0; } else { var items = order.split("|"); order = ""; for (var i = 0; i < items.length; i = i + 1) { var position = items[i].indexOf("-"); var prodId = items[i].substring(0, position); var quantity = parseInt(items[i].substring(position + 1)); if (prodId == itemId) { quantity = Qty; if (order != "") { order += "|"; } order += prodId + "-" + quantity; itemExists = true; } else { if (order != "") { order += "|"; } order += prodId + "-" + quantity; } orderedItems[prodId] = quantity; orderedTotQty += quantity; } } $('.cartqty').html(orderedTotQty); $.cookie('order', order); $.cookie('orderedTotQty', orderedTotQty); var url = window.location.pathname; var filename = url.substring(url.lastIndexOf('/') + 1); if (filename == carturl) { showCart(false, 'set', itemId); } else { $(location).attr('href', carturl); } }; var removeRowItem = function(itemId) { var order = $.cookie('order'); if (!order) { orderedTotQty = 0; } else { var items = order.split("|"); order = ""; orderedTotQty = 0; orderedItems = null; orderedItems = new Array(); for (var i = 0; i < items.length; i = i + 1) { var position = items[i].indexOf("-"); var prodId = items[i].substring(0, position); var quantity = parseInt(items[i].substring(position + 1)); if (prodId == itemId) { } else { if (order != "") { order += "|"; } order += prodId + "-" + quantity; orderedTotQty += quantity; orderedItems[prodId] = quantity; } } } if($('#prow-' + itemId).size() == 1) { $('#prow-' + itemId).remove(); } $.cookie('order', order); $.cookie('orderedTotQty', orderedTotQty); showCart(false, 'removerow', itemId); }; //Emptying the cart var emptyCart = function() { var order = $.cookie('order'); order = ""; orderedTotQty = 0; orderedItems = null; orderedItems = new Array(); $.cookie('order', order); $.cookie('orderedTotQty', orderedTotQty); if($('[id^="prow-"]').size() > 0) { $('[id^="prow-"]').each(function(){ $(this).remove(); }); } showCart(false, 'empty'); }; //Displaying the cart items & calculations function showTotalPrice() { var cartHtml = ""; var total = 0; var shipping = 0; var grand_total = 0; var sub_total = 0; var shippingType = ''; var order = $.cookie('order'); orderedTotQty = $.cookie('orderedTotQty'); if($('#shippingCountry').val() == '') { shippingType = ''; } else if($('#shippingCountry').val() == 'US') { shippingType = 'US'; } else { shippingType = 'INTERNATIONAL'; } if (!order) { orderedTotQty = 0; } else { var items = order.split("|"); if(shipRates) { shipping = shipRates * 1.0; } for (var i = 0; i < items.length; i = i + 1) { var position = items[i].indexOf("-"); var prodId = items[i].substring(0, position); var quantity = parseInt(items[i].substring(position + 1)); if (prodId != "" && quantity > 0) { sub_total = round((quantity * products[prodId][1]), 2); total += (quantity * products[prodId][1]); } } total = round(total, 2); } var snh = shipping + handling; //if(shipping == 0) { // snh = shipping; //} console.log(snh); grand_total = total + snh; $('#total-price').html('$ ' + total.toFixed(2)); $('#shipping-price').html('$ ' + snh.toFixed(2)); $('#grand-total').html('$ ' + grand_total.toFixed(2)); $(".show-tot").html('$'+total.toFixed(2)); }; // Refresh row content with updated quantity / price for a product function refreshRow(pid) { pid = parseInt(pid); quantity = orderedItems[pid]; sub_total = round((quantity * products[pid][1]), 2); $('#prow-' + pid + ' .tot-price').html('$' + sub_total.toFixed(2) + ' USD'); $('#prow-' + pid + ' .qtybox').val(quantity); $('#prow-' + pid + ' .dispqty').html(quantity); } //Displaying the cart items & calculations function showCart(showFullCart, act, itm) { var cartHtml = ""; var order = $.cookie('order'); orderedTotQty = $.cookie('orderedTotQty'); if (!order) { orderedTotQty = 0; if($('[id^="prow-"]').size() == 0) { $("#cartBox").html("

You have not selected any product...

  Browse Products"); } showTotalPrice(); return false; } else { var items = order.split("|"); var total = 0; var shipping = 0; var grand_total = 0; orderedTotQty = parseInt(orderedTotQty); //console.log('showFullCart'); //console.log(showFullCart); if (typeof showFullCart === "undefined") { return false; } else if(showFullCart == false) { if ((typeof act !== "undefined") && (typeof itm !== "undefined")) { if((act == 'add' || act == 'set' || act == 'remove') && itm > 0) { refreshRow(itm); } else if(act == 'removerow' && itm > 0) { itm = parseInt(itm); } } showTotalPrice(); return false; } orderedItems = null; orderedItems = new Array(); cartHtml += "
Order Summary Price
"; cartHtml += "
Your Order QtyUnit PriceTotal
"; var total = 0; for (var i = 0; i < items.length; i = i + 1) { var position = items[i].indexOf("-"); var prodId = items[i].substring(0, position); var quantity = parseInt(items[i].substring(position + 1)); if (prodId != "" && quantity > 0) { orderedItems[prodId] = quantity; var sub_total = round((quantity * products[prodId][1]), 2); total += sub_total; cartHtml += "
" + "
" + "

" + products[prodId][4] + " " + products[prodId][0] + ""+ products[prodId][6] +"

" + "
" + "" + ""+ "
"+ quantity +"
" + "
$" + (products[prodId][1]).toFixed(2) + "
" + "
$" + sub_total.toFixed(2) + "
" + "
" } } cartHtml += "
"; cartHtml += "
" +"
" +"
    " +"
  • Sub Total: $" + total.toFixed(2) + "
  • " +"
  • Shipping & Handling: $0.00
  • " +"
  • Total: $" + total.toFixed(2) + "
  • " +"
" +"
" +"
"; cartHtml += "
" if (cartHtml != "") { $("#cartBox").html(cartHtml); $(".cart-box").html(cartHtml); $(".show-tot").html('$'+total.toFixed(2)); } else { $("#cartBox").html(" Loading..."); $(".cart-box").html('You have not selected any product... '); } return false; } }; var round = function(value, decimals) { return Number(Math.round(value + 'e' + decimals) + 'e-' + decimals); };