22/06/2007, 11:56
|
| | | Fecha de Ingreso: septiembre-2005 Ubicación: Córdoba
Mensajes: 1.830
Antigüedad: 19 años, 2 meses Puntos: 55 | |
Re: ajax y select (no igual al resto de las preguntas ) para prototype
function cargar(v){
for(var i=0;i<v.length;i++){
if(v[i].checked){
break;
}
}
new Ajax.Updater('resultados','getResultados.php?valor ='+v[i]);
}
<select onchange="cargar(this)">
<opt...
<opt...
<opt...
</select>
<div id="resultado"></div> |