$(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 boton_link = $(this).find('.kk_boton_link'); var boton_texto = $(this).find('.kk_boton_texto'); var boton_ico = $(this).find('.kk_boton_ico'); var btn_texto = 'ver'; var btn_ico = 'ico ico-ojo'; boton_link.attr('href', '/producto/' + titulo + '-' + producto_id + '.html'); 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 ''; } }