Hola, vengo ya hace un buen rato buscando como hacer esto y he probado de varias maneras y de ninguna me funciona... Lo que quiero hacer es que al hacer click en un div, llame a una funcion (Reload) y que lleve a una pagina mandando valores por metodo get.
Esta es mi funcion Reload
Código Javascript
:
Ver originalfunction 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<select name="Prod" size="1" class="list_current" tabindex="1" id="Prod"> <select name="Cat" size="1" class="list_current" tabindex="2" id="Cat">
Y sus opciones asi (las cargo desde php)
Código PHP:
Ver originalecho "<option value='Uno'>Producto 1</option>";
Muchas gracias !