!function(y, k) { async function T(e) { var t = await (await fetch("/checkout/current-cart")).json(); k = t, Object.assign(e, k); } y(function() { "use strict"; // const isOpenActive = new URLSearchParams(window.location.search).get('open') === 'true'; var c = '

{VARIANT_NAME}

{VARIANT_PRICE}

-
{VARIANT_QUANTITY_PRESENTATION}
+
', d = '
Descontos: {CART_DISCOUNT_TOTAL}
', m = '
' + (SHOW_PRODUCT_PRICE ? '
Sub Total:
{CART_TOTAL}
Frete:
GRÁTIS
' : "") + '

', u = '
Seu carrinho

Nenhum produto em seu carrinho.

'; function p(e) { var t = []; if (0 < e.items.length && (t = y.merge(t, e.items)), e.sales && 0 < e.sales.length) for (var a = 0; a < e.sales.length; a++) t = y.merge(t, e.sales[a].items); return t; } function getCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') c = c.substring(1, c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length); } return null; } function t(e) { const cartContent = y(".shopping-cart-content"); // Mostrar imagem de carregamento // cartContent.empty().append(''); cartContent.empty().append('...'); // Atualizar o conteúdo do carrinho T(e).then(() => { const t = SHOW_PRODUCT_PRICE ? y.number(e.totalWithDiscount, 2, ",", ".") : "", a = cartContent.empty(), o = p(e); const divBefore = '
Seu carrinho
'; const divAfter = '
Continuar Comprando
'; // Adiciona a div antes do conteúdo principal a.append(divBefore); if (e && o.length !== 0) { let i = 0; for (let n = 0; n < o.length; n++) { let s = o[n], r = SHOW_PRODUCT_PRICE ? "R$ " + y.number(s.totalPriceWithDiscount, 2, ",", ".") : "", l = s.quantity; if (s.variant.isFractionalStock) { l = 1; } a.append(c.replace("{PRODUCT_IMAGE}", s.image || "/bundles/flexyftwostore/img/product-placeholder.gif") .replace("{VARIANT_NAME}", s.name) .replace("{CART_ID}", s.id) .replace("{CART_ID2}", s.id) .replace("{CART_ID3}", s.id) .replace("{VARIANT_PRICE}", r) .replace("{VARIANT_QUANTITY_PRESENTATION}", + w(s.quantity))); i += l; } if (e.salePromotionDiscountTotal > 0 && SHOW_PRODUCT_PRICE) { a.append(d.replace("{CART_DISCOUNT_TOTAL}", "R$ " + y.number(e.salePromotionDiscountTotal, 2, ",", "."))); } // Atualiza a contagem de itens no carrinho if (window.innerWidth < 991 || screen.width < 991) { y(".cart-items-count").html('' + Number(i) + ""); } else { y(".cart-items-count").html(Number(i) + " " + (Number(i) > 1 ? "itens" : "item")); } // Adiciona o total do carrinho a.append(m.replace("{CART_TOTAL}", "R$ " + t) .replace("{CART_TOTAL_FINAL}", "R$ " + t) .replace("{ZIP_CODE}", getCookie("cepNumero"))); // Inclui o CEP diretamente na URL do botão // Adiciona a div depois do conteúdo principal a.append(divAfter); } else { a.html(u); } }); } // Adiciona o evento de clique para fechar o carrinho apenas no botão de fechar y(document).on('click', '.car-fechar', function() { // y('.shopping-cart-content').hide(); // y('.header-mini-cart').removeClass('open'); window.location.reload(); }); // y(document).on('click', '.dropdown-menu', function() { // y('.shopping-cart-content').addClass('open'); // }); y(document).on('click', '.continuar', function() { y('.shopping-cart-content').hide(); y('.shopping-cart-content').addClass('open'); event.preventDefault(); }); y(document).on('click', '.shopping-cart-content ', function() { y('.header-mini-cart').addClass('open'); // alert(2) }); // y(document).on('click', '.mandioca', function() { // y('.shopping-cart-content').show(); // y('.shopping-cart-content').addClass('open'); // }); y(document).on('click', '.main_cart_add', function() { y('.shopping-cart-content').show(); y('.shopping-cart-content').addClass('open'); t(e); }); // Função para adicionar ou remover itens do carrinho y(document).on('click', '.add-item-to-cart', async function() { try { var variantId = $(this).data('variant-id'); // Obtém o data-variant-id do item clicado var cart = await (await fetch("/checkout/current-cart")).json(); // Obtém o carrinho atual // Verifica se o item já está no carrinho var itemIndex = cart.items.findIndex(item => item.id === variantId); console.log('itemindex', itemIndex) if (itemIndex > -1) { console.log('itemindex', 'padra') // Se o item já existe, aumenta a quantidade cart.items[itemIndex].quantity++; } else { // Se o item não existir, adiciona-o com quantidade 1 cart.items.push({ id: variantId, quantity: 1 }); } // Envia os dados para atualizar o carrinho let response = await fetch("/cart/update", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(cart.items.find(item => item.id === variantId)) }); let data = await response.json(); if (!response.ok) { } else { console.log('Carrinho atualizado com sucesso:', data); $('.flbtn span').text( cart.items[itemIndex].quantity); $('.cart-sumary-total').text(number(cart.totalWithDiscount, 2, ",", ".")); } console.log('Item adicionado ao carrinho:', { id: variantId, quantity: cart.items.find(item => item.id === variantId).quantity }); } catch (error) { console.error('Erro ao adicionar item ao carrinho:', error); } }); y(document).on('click', '.remove-item-to-cart', async function() { try { var variantId = $(this).data('variant-id'); // Obtém o data-variant-id do item clicado var cart = await (await fetch("/checkout/current-cart")).json(); // Obtém o carrinho atual // Verifica se o item já está no carrinho var itemIndex = cart.items.findIndex(item => item.id === variantId); console.log('itemindex', itemIndex); if (itemIndex > -1) { // Se o item já existe, diminui a quantidade cart.items[itemIndex].quantity--; // Remove o item se a quantidade for menor que 1 if (cart.items[itemIndex].quantity < 1) { cart.items.splice(itemIndex, 1); } } else { // Se o item não existir, adiciona-o com quantidade 1 cart.items.push({ id: variantId, quantity: 1 }); } // Envia os dados para atualizar o carrinho let response = await fetch("/cart/update", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(cart.items.find(item => item.id === variantId)) }); let data = await response.json(); if (!response.ok) { console.error('Falha ao atualizar o carrinho:', data); } else { console.log('Carrinho atualizado com sucesso:', data); // Atualiza a visualização do carrinho $('.flbtn span').text( cart.items[itemIndex].quantity); $('.cart-sumary-total').text(number(cart.totalWithDiscount, 2, ",", ".")); } console.log('Carrinho após a atualização:', cart); } catch (error) { console.error('Erro ao atualizar o carrinho:', error); } }); // y(document).on('click', '.col-trash', async function() { // try { // var variantId = $(this).data('variant-id'); // Obtém o data-variant-id do item clicado // var cart = await (await fetch("/checkout/current-cart")).json(); // Obtém o carrinho atual // // Remove todos os itens com o id correspondente // cart.items = cart.items.filter(item => item.id !== variantId); // // Envia o carrinho atualizado para o servidor // let response = await fetch("/cart/update", { // method: "POST", // headers: { // "Content-Type": "application/json" // }, // body: JSON.stringify(cart.items.find(item => item.id === variantId)) // }); // let data = await response.json(); // if (!response.ok) { // console.error('Erro ao atualizar o carrinho:', data); // } else { // console.log('Carrinho atualizado com sucesso:', data); // // Atualiza a visualização do carrinho // $('.flbtn span').text(cart.items.find(item => item.id === variantId)?.quantity || 0); // $('.cart-sumary-total').text(number(cart.totalWithDiscount, 2, ",", ".")); // } // console.log('Carrinho atualizado após remoção de itens:', cart); // } catch (error) { // console.error('Erro ao atualizar o carrinho:', error); // } // }); y(document).on('click', '.col-trash', async function() { try { var variantId = $(this).data('variant-id'); // Obtém o data-variant-id do item clicado // URL de exclusão do item let deleteUrl = `https://lojanatto.com.br/cart/delete?id=${variantId}`; // Faz a requisição para excluir o item let response = await fetch(deleteUrl, { method: "GET" }); if (!response.ok) { let data = await response.json(); console.error('Falha ao excluir o item do carrinho:', data); } else { console.log('Item excluído com sucesso do carrinho.'); // Dá refresh na página location.reload(); } } catch (error) { console.error('Erro ao excluir o item do carrinho:', error); } }); function a(e) { for (var t = p(e), a = 0, o = 0; o < t.length; o++) { var i = t[o], n = i.quantity; a += n = i.variant.isFractionalStock ? 1 : n } window.innerWidth < 991 || screen.width < 991 ? y(".cart-items-count").html('' + Number(a) + "") : y(".cart-items-count").html(Number(a) + " " + (1 < Number(a) ? "itens" : "item")) } function i(e, t) { if (!(t && t < e)) return 1; alert("Não foi possível adicionar " + e + " produtos ao carrinho. Atualmente possuímos apenas " + t) } var o = 0, n = y("#header"), s = y("#header-main-fixed"), r = y(".header-bg"), l = y(".top-header-bg"), v = document.getElementById("gotop"), f = null != v; y(window).scroll(function() { var e = y(this).scrollTop(); o < e ? 50 < e && (n.addClass("header-top-fixed"), n.find(".header-top-row").addClass("dis-n"), r.addClass("header-bg-fixed"), s.addClass("header-main-fixed"), l.addClass("top-header-bg-fix"), f) && (v.style.display = "block") : e < 50 && (n.removeClass("header-top-fixed"), n.find(".header-top-row").removeClass("dis-n"), s.removeClass("header-main-fixed"), r.removeClass("header-bg-fixed"), l.removeClass("top-header-bg-fix"), f) && (v.style.display = "none"), o = e }), y(".top-page").click(function() { document.body.scrollTop = 0, document.documentElement.scrollTop = 0 }), y("#nav-bestseller .next").click(function() { y("#owl-bestseller").trigger("owl.next") }), y("#nav-bestseller .prev").click(function() { y("#owl-bestseller").trigger("owl.prev") }), y("#owl-bestseller").owlCarousel({ items: 4, itemsCustom: !1, itemsDesktop: [1199, 3], itemsDesktopSmall: [980, 2], itemsTablet: [630, 1], itemsTabletSmall: !1, itemsMobile: [479, 1], singleItem: !1, itemsScaleUp: !1, responsive: !0, responsiveRefreshRate: 200, responsiveBaseWidth: window, autoPlay: !1, stopOnHover: !1, navigation: !1 }), y("#nav-summer-sale .next").click(function() { y("#owl-summer-sale").trigger("owl.next") }), y("#nav-summer-sale .prev").click(function() { y("#owl-summer-sale").trigger("owl.prev") }), y("#owl-summer-sale").owlCarousel({ items: 3, itemsCustom: !1, itemsDesktop: [1199, 2], itemsDesktopSmall: [980, 2], itemsTablet: [630, 1], itemsTabletSmall: !1, itemsMobile: [479, 1], singleItem: !1, itemsScaleUp: !1, responsive: !0, responsiveRefreshRate: 200, responsiveBaseWidth: window, autoPlay: !1, stopOnHover: !1, navigation: !1 }), y("#nav-child .next").click(function() { y("#owl-child").trigger("owl.next") }), y("#nav-child .prev").click(function() { y("#owl-child").trigger("owl.prev") }), y("#owl-child").owlCarousel({ items: 3, itemsCustom: !1, itemsDesktop: [1199, 2], itemsDesktopSmall: [980, 2], itemsTablet: [630, 1], itemsTabletSmall: !1, itemsMobile: [479, 1], singleItem: !1, itemsScaleUp: !1, responsive: !0, responsiveRefreshRate: 200, responsiveBaseWidth: window, autoPlay: !1, stopOnHover: !1, navigation: !1 }), y("#nav-tabs .next").click(function() { y("#owl-new").trigger("owl.next"), y("#owl-featured").trigger("owl.next") }), y("#nav-tabs .prev").click(function() { y("#owl-new").trigger("owl.prev"), y("#owl-featured").trigger("owl.prev") }), y("#owl-new").owlCarousel({ items: 4, itemsCustom: !1, itemsDesktop: [1199, 3], itemsDesktopSmall: [980, 2], itemsTablet: [630, 1], itemsTabletSmall: !1, itemsMobile: [479, 1], singleItem: !1, itemsScaleUp: !1, responsive: !0, responsiveRefreshRate: 200, responsiveBaseWidth: window, autoPlay: !1, stopOnHover: !1, navigation: !1 }), y("#owl-featured").owlCarousel({ items: 4, itemsCustom: !1, itemsDesktop: [1199, 3], itemsDesktopSmall: [980, 2], itemsTablet: [630, 1], itemsTabletSmall: !1, itemsMobile: [479, 1], singleItem: !1, itemsScaleUp: !1, responsive: !0, responsiveRefreshRate: 200, responsiveBaseWidth: window, autoPlay: !1, stopOnHover: !1, navigation: !1 }), y("#nav-tabs2 .next").click(function() { y("#owl-new2").trigger("owl.next"), y("#owl-featured2").trigger("owl.next") }), y("#nav-tabs2 .prev").click(function() { y("#owl-new2").trigger("owl.prev"), y("#owl-featured2").trigger("owl.prev") }), y("#owl-new2").owlCarousel({ items: 3, itemsCustom: !1, itemsDesktop: [1199, 2], itemsDesktopSmall: [980, 2], itemsTablet: [630, 1], itemsTabletSmall: !1, itemsMobile: [479, 1], singleItem: !1, itemsScaleUp: !1, responsive: !0, responsiveRefreshRate: 200, responsiveBaseWidth: window, autoPlay: !1, stopOnHover: !1, navigation: !1 }), y("#owl-featured2").owlCarousel({ items: 3, itemsCustom: !1, itemsDesktop: [1199, 2], itemsDesktopSmall: [980, 2], itemsTablet: [630, 1], itemsTabletSmall: !1, itemsMobile: [479, 1], singleItem: !1, itemsScaleUp: !1, responsive: !0, responsiveRefreshRate: 200, responsiveBaseWidth: window, autoPlay: !1, stopOnHover: !1, navigation: !1 }), y("#owl-partners").owlCarousel({ items: 5, itemsCustom: !1, itemsDesktop: [1199, 4], itemsDesktopSmall: [980, 3], itemsTablet: [630, 1], itemsTabletSmall: !1, itemsMobile: [479, 1], singleItem: !1, itemsScaleUp: !1, responsive: !0, responsiveRefreshRate: 200, responsiveBaseWidth: window, autoPlay: !0, stopOnHover: !1, navigation: !1 }), y("#owl-home-slider").owlCarousel({ items: 1, itemsCustom: !1, itemsDesktop: [1199, 1], itemsDesktopSmall: [980, 1], itemsTablet: [630, 1], itemsTabletSmall: !1, itemsMobile: [479, 1], singleItem: !1, itemsScaleUp: !1, responsive: !0, responsiveRefreshRate: 200, responsiveBaseWidth: window, autoPlay: !0, stopOnHover: !1, navigation: !1 }), y(function() { y(".dropdown").hover(function() { y(this).addClass("open") }, function() { y(this).removeClass("open") }) }); y("body").find(".holder").length || y("body").append("
"), y("div.holder").jPages({ containerID: "products", previous: ".feature-block a[data-role='prev']", next: ".feature-block a[data-role='next']", animation: "fadeInRight", perPage: 4 }), y(".revolution").revolution({ delay: 9e3, startwidth: 1170, startheight: 500, hideThumbs: 10, fullWidth: "on", fullScreen: "on", navigationType: "none", navigationArrows: "solo", navigationStyle: "round", navigationHAlign: "center", navigationVAlign: "bottom", navigationHOffset: 30, navigationVOffset: 30, soloArrowLeftHalign: "left", soloArrowLeftValign: "center", soloArrowLeftHOffset: 20, soloArrowLeftVOffset: 0, soloArrowRightHalign: "right", soloArrowRightValign: "center", soloArrowRightHOffset: 20, soloArrowRightVOffset: 0, touchenabled: "on" }), y(".tool_tip").tooltip(), 777 < y(window).width() ? y("#product-zoom").elevateZoom({ zoomType: "inner", cursor: "crosshair", zoomWindowFadeIn: 500, zoomWindowFadeOut: 750 }) : y("#gal1 a").on("click", function() { var e = y(this).data("image"); y("#product-zoom").attr("src", e) }); var e = y("#gal1"), e = (e.find("a[data-image]").hover(function() { y(".product-media-details").removeClass("video"); y(this); y(".product-media-details").find(".product-video").find("iframe").remove(); var e = y(this).attr("data-image"), t = y(this).attr("data-zoom-image"); y("#product-zoom").data("elevateZoom").swaptheimage(e, t) }), e.find("a[data-video]").on("mouseover", function() { var e = y(this), t = y(".product-media-details"), a = t.find(".product-video"); a.html() || (a.find("iframe").remove(), a.append('
')), new YT.Player("player", { width: "100%", videoId: e.data("video"), playerVars: { autoplay: 1 } }); t.addClass("video") }), (new Date).getTime()), e = new Date(e + 864e5); function h() { var e, t, a; y("[name='customer[type]']").length && (e = y("[name='customer[type]']").val(), a = (t = y("#customer_customerType")).find("option"), "cpf" == e ? (y(".cpf").show().find(":input").attr("required", "required"), y(".cnpj").hide().find(":input").removeAttr("required"), t.val(a.filter(function() { return "B2C" == y(this).text() }).val())) : (y(".cnpj").show().find(":input:not(#check):not(#customer_taxationRegime)").attr("required", "required"), y(".cpf").hide().find(":input").removeAttr("required"), t.val(a.filter(function() { return "B2B" == y(this).text() }).val()))) } function g(e) { return e = e.replace(/\./g, ""), parseFloat(e.replace(/,/g, ".")) } function w(e) { return e = -1 < (e = e.toString()).indexOf(".") ? (e = Number(e).toFixed(3)).replace(".", ",") : e } y(".time").countdown({ date: e, yearsAndMonths: !0, leadingZero: !0 }), y(".ul-side-category li a").click(function() { var e = y(this).next(); return !e.hasClass("sub-category") || ("none" === e.css("display") ? y(this).next().slideDown() : (y(this).next().slideUp(), y(this).next().find(".sub-category").slideUp()), !1) }), y("[name='customer[type]']").on("change blur", function() { h() }), y(".main_cart_add").on("click", function(e) { t(e); }) , y(".cart-sumary .header-mini-cart").on("click", function(e) { t(e); }) , y("#check").on("change click", function() { y(this).is(":checked") ? y("#customer_cnpj_stateRegistration").addClass("readonly").attr("readonly", "readonly").val("ISENTO") : y("#customer_cnpj_stateRegistration").removeClass("readonly").removeAttr("readonly").val("") }), y(".main-category-block label").on("click", function() { window.location.href = y(this).data("url") }), y("#partners img").on("mouseenter", function(e) { var t = y(this); t.data("src", t.attr("src")).attr("src", t.data("hover")) }).on("mouseleave", function(e) { var t = y(this); t.attr("src", t.data("src")) }), y(".product-related-carousel").owlCarousel({ items: 6, itemsCustom: !1, itemsDesktop: [1199, 3], itemsDesktopSmall: [980, 2], itemsTablet: [630, 1], itemsTabletSmall: !1, itemsMobile: [479, 1], singleItem: !1, itemsScaleUp: !1, responsive: !0, responsiveRefreshRate: 200, responsiveBaseWidth: window, autoPlay: !0, stopOnHover: !0, navigation: !1 }), y(".product-related-nav .next").click(function() { y(y(this).data("carousel")).trigger("owl.next") }), y(".product-related-nav .prev").click(function() { y(y(this).data("carousel")).trigger("owl.prev") }), y(".flexy-cart-product-quantity, .input-number-inf").on("focus", function(e) { var t = y(this); t.data("quantity", g(t.val())) }).on("blur", function(e) { var t = y(this); t.val() && t.val() != t.data("quantity") ? t.trigger("change") : t.val(t.data("quantity")) }), y("body").on("cart-success", ".flexy-add-to-cart, .flexy-add-to-booking", function(e, t) { a(t), (window.innerWidth < 991 || screen.width < 991) && alert("Produto adicionado ao carrinho!") }), y("body").on("cart-error", function(e, t) { alert(t) }), y("#create-gift-list-form").on("submit", function() { if (y("#create-gift-list-button").attr("disabled", !0), y(this).attr("data-sent")) return !1; y(this).attr("data-sent", "data-sent") }); var b, e = y(".flexy-weight-mask"); e.mask("#######0,000", { placeholder: "0,000", reverse: !0 }); e.on("keyup", function(e) { clearTimeout(b), b = setTimeout(function() { ! function(e, t, a) { var o = a.data("stock"); if (i(g(t), o)) return 1; a.val(w(o)).trigger("change"), e.preventDefault(), e.stopImmediatePropagation() }(e, y(this).val(), y(this)) || y(this).trigger("blur") }, 1200) }), e.on("keydown", function(e) { clearTimeout(b) }), y(".stock-verified").on("change keypress keyup keydown", function(e) { var t = y(this); i(Number(t.val()), t.data("stock")) || (t.val(w(t.data("stock"))).trigger("change"), e.preventDefault(), e.stopImmediatePropagation()) }), h(), a(k) }), (new WOW).init() }(jQuery, CART), function() { var t = [], a = new Set([]); function o(e) { return t.indexOf(e) } function e() { $(".search-box").animate({ opacity: "toggle" }, 500, function() {}), $(".search-modal-background").animate({ opacity: "toggle" }, 500, function() {}) } $(function() { $(".additional-add-to-cart").on("click", function() { var e = $(this).data("variant-id"); - 1 < o(e) ? (t.splice(o(e), 1), alert("Produto removido!")) : (t.push(e), alert("Produto adicionado!")), $(".main_cart_add").data("additional-variant-ids", t) }) }), $(function() { $(".additional-to-cart").on("click", function() { var e = $(this).data("addition-id"); a.add(e), $(".flexy-add-to-cart, .flexy-add-to-booking").one("cart-error", function() { a.delete(e) }) }) }), $(function() { $(".search-box-toggle").click(function() { e(), $(".search-input").focus() }), $(".search-modal-background").click(function() { e() }) }), $(function() { $(".coupon-validate").on("keyup", function(e) { $(this).val($(this).val().replace(/[^0-9a-zA-Z_]/g, "")) }) }), $(function() { $("#zipCodeCart").on("keyup", function(e) { var t; e.currentTarget.dataset.disableViacep ? $("#calculation_cep").attr("disabled", !1) : (9 === $(this).val().length && (container = $(".cep_validate"), e = "https://viacep.com.br/ws/" + $(this).val() + "/json/", (t = new XMLHttpRequest).onreadystatechange = function() { if (4 == t.readyState && 200 == t.status) { var e = JSON.parse(t.responseText); if (e.erro) return $("#calculation_cep").attr("disabled", !0), container.html("
Este CEP não existe.
Favor informe um CEP válido
"), $(".shipping-estimate").hide(), !1 } e.logradouro && ($(".cep_validate").html(""), $("#calculation_cep").attr("disabled", !1), $("#calculation_cep").focus()) }, t.open("GET", e, !0), t.send()), 0 === $(this).val().length && $(".cep_validate").html("")) }) }), $(function() { $("#zipCode").click(function() { var e, a; - 1 !== window.location.pathname.indexOf("quote") && (e = $(".flexy-input-postcode").val(), e = [location.protocol, "//", location.host, location.pathname].join("") + "?zipCode=" + e, a = "", $(".f2-quote-observation").each(function() { var e = $(this).data("observation"), t = $(this).val(); a += "&" + e + "=" + t }), window.location = e + a) }) }), $(function() { $(".copy-to-clipboard").click(function() { var e = $(this), t = e.data("text"), a = document.createElement("input"), t = (document.body.appendChild(a), a.setAttribute("id", "dummy_id"), document.getElementById("dummy_id").value = t, a.select(), document.execCommand("copy"), document.body.removeChild(a), e.find(".fa-check")); t.length || (t = document.createElement("span"), e.append(t), $(t).addClass("fa fa-check")), e.fadeOut(300).fadeIn(300).prop("title", "Copiado!") }) }), $(function() { $(".payment-box .nav-tabs [role=tab]").on("click", function() { var e = $("[name='checkout[paymentMethod][0][name]']:checked").val(); new RegExp("payment.method.creditcard..+").test(e) || $("#installments-tax").hide() }) }) }();