$(document).ready(function () { $(".kk_producto").each(function () { var producto_id = $(this).attr('id'); var talles = $(this).attr('kk_talles'); var titulo = $(this).attr('kk_titulo'); var precio_elemento = $(this).find('.kk_precio'); var iva_ver = $(this).find('.kk_iva_ver'); var precio_ant_elemento = $(this).find('.kk_precio_ant'); var boton_link = $(this).find('.kk_boton_link'); var boton_texto = $(this).find('.kk_boton_texto'); var boton_ico = $(this).find('.kk_boton_ico'); if (talles == '') { var btn_texto = 'Comprar'; } else { var btn_texto = 'ver'; } var btn_ico = 'ico ico-carrito'; var precio = pr[producto_id][0]; var precio_anterior = pr[producto_id][1]; var porcentaje_descuento = pr[producto_id][2]; var stock = pr[producto_id][3]; if ((precio == 0) || (stock == 0)) { precio_elemento.html(' '); iva_ver.hide(); boton_link.attr('href', '/producto/' + titulo + '-' + producto_id + '.html'); btn_texto = 'Ver'; btn_ico = 'ico ico-ojo'; } else { precio_elemento.html('$' + formatoNumero(precio, 2, ',', '.')); if ((1 == 1) && (talles == '')) { boton_link.attr('href', '/carro/' + producto_id + '/1.html'); } else { boton_link.attr('href', '/producto/' + titulo + '-' + producto_id + '.html'); btn_texto = 'Ver'; btn_ico = 'ico ico-ojo'; } if (precio_anterior > 0) { precio_ant_elemento.html('$' + formatoNumero(precio_anterior, 2, ',', '.') + cartel_descuento(porcentaje_descuento)); } } boton_texto.append(btn_texto); boton_ico.addClass(btn_ico); }); if ($(window).width() <= 991) { $("#collapseCategoria").removeClass("in") } }); function cartel_descuento(porcentaje) { if (porcentaje > 0) { return ' ' + porcentaje + '% off'; } else { return ''; } }