Categories

Filter

REFINE BY

  • Manufacturer

  • Color

  • Size

  • Configuration

  • Style

  • Type

  • Material

  • Length

  • Fitting Primary Size

  • Fitting Secondary Size

  • Fitting Style

  • Fitting Configured

Sort by:
Show:
', }); function AddToCart(pId) { $('#'+pId).html(''); var oQtyBox = $("#qty" + pId); var strAddToCartAction = "/shop-by/product/add-to-cart-async/"; $.post( strAddToCartAction, { pQty: oQtyBox.val(), pProductId: pId }) .done(function( response ) { response = JSON.parse(response); if (response.status == 'success') { $.notify("Item added to the cart. Click here to view cart.", {style: 'cart', className: ' alert-box success', clickToHide: false}); $('#'+pId).html(''); $('.fa.quantity.fa-stack-1x').html(response.qty); setTimeout(function () { $('#'+pId).html('Add to Cart'); }, 3000); } else { location.href = response.url; } }) .fail(function() { $('#'+pId).html(''); $.notify("Error. Unable to add item to Cart.", 'error'); setTimeout(function () { $('#'+pId).html('Add to Cart'); }, 3000); }); } function qtyMod(pId, delta) { var oQtyBox = $("#qty" + pId); var qty = parseInt(oQtyBox.val()); qty += delta; if (qty > 0) { oQtyBox.val(qty); } return false; }