Great things are on the horizon

Something big is brewing! Our store is in the works and will be launching soon!

Carrito de compra
jQuery(document).ready(function($) { // Ocultar los campos de facturación al inicio $('.facturacion-campos').hide(); // Cuando se seleccione "Deseo facturar" $('#billing_invoice').change(function() { if ($(this).is(':checked')) { $('.facturacion-campos').slideDown(); } else { $('.facturacion-campos').slideUp(); } }); }); .facturacion-campos { display: none; } #billing_invoice:checked ~ .facturacion-campos { display: block; }
Scroll al inicio