Ver Mensaje Individual
  #2 (permalink)  
Antiguo 17/01/2011, 18:15
Avatar de goteen_mx
goteen_mx
 
Fecha de Ingreso: abril-2005
Ubicación: D.F.
Mensajes: 403
Antigüedad: 19 años
Puntos: 37
Respuesta: plugin autocomplete jquery enviando el valor de select

en el js

var option_selected= document.getElementById("tu select").options[document.getElementById("tu select").selectedIndex].value;

o

var option_selected = $("#tu select").value;

y en tu php recibes el valor con $option_selected = $_GET["option_selected"];
y armas tu query.

Saludos.