Ver Mensaje Individual
  #8 (permalink)  
Antiguo 06/01/2010, 13:28
Avatar de mayid
mayid
Colaborador
 
Fecha de Ingreso: marzo-2009
Ubicación: BsAs
Mensajes: 4.014
Antigüedad: 15 años, 7 meses
Puntos: 101
Respuesta: Problema con función javascript/jquery

Ok. El equivalente a esto:

Cita:
document.nomyform.third.value
es esto:

Cita:
$("#third").val()



En relacion a lo otro, veamos por este lado:
Cita:
<select name="third" id="third" onchange="llamada(this);">
Cita:
function llamada (id) {
if (id.options.value == "third")

{
$("#relleno3").hide("slow");


}
}