jQuery(document).ready(function($) { console.log("%cBuscador de llantas preparado - 721 y listo para usarse", "color: green"); const boton_busqueda = document.getElementById("filtrar_busqueda_llantas"); const rin = document.getElementById("rin"); const ancho = document.getElementById("ancho"); const perfil = document.getElementById("perfil"); boton_busqueda.addEventListener('click', function(){ //window.location = 'https://www.autoplanet.com.co/llantas-para-carro/?filter_rin=' + rin.value + '&filter_ancho-de-seccion-mm=' + ancho.value + '&filter_perfil=' + perfil.value; let url_base = 'https://www.autoplanet.com.co/llantas/'; if(rin.value != ""){ url_base += '?filter_rin=' + rin.value; } if(ancho.value != ""){ url_base += '&filter_ancho-de-seccion-mm=' + ancho.value; } if(perfil.value != ""){ url_base += '&filter_perfil=' + perfil.value; } window.location = url_base; }); });