Esta es mi funcion Reload
Código Javascript:
Ver original
function Reload(){ var Produc = document.getElementById('Prod'); var Cate = document.getElementById('Cat'); if (Produc.options[Produc.selectedIndex].value == "Uno" | Produc.options[Produc.selectedIndex].value == "Dos" | Produc.options[Produc.selectedIndex].value == "Tres") { if (Cate .options[Cate .selectedIndex].value > 0 & Cate .options[Cate .selectedIndex].value <= 5) { window.location = "productos.php?produc="+Produc+"&categ="+Cate; } } }
Eso lo que haria seria extraer el valor verdad?, porque no me funciona :S.
Asi tengo mis 2 select
Código HTML:
Ver original
Y sus opciones asi (las cargo desde php)
Código PHP:
Ver original
echo "<option value='Uno'>Producto 1</option>";
Muchas gracias !