Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/06/2010, 17:59
Avatar de mayid
mayid
Colaborador
 
Fecha de Ingreso: marzo-2009
Ubicación: BsAs
Mensajes: 4.014
Antigüedad: 15 años, 8 meses
Puntos: 101
Respuesta: Problema con JavaScript

Si podes usar el $(this)

Pasa que setTimeout es una funcion quisquillosa.

Probá:
Cita:
...
setTimeout("infoOpen($(this))", 370);

...

function infoOpen(seccion) {
/// a partir de aqui, tu objeto se llama "seccion"
...
Si no funciona, hacelo así:
Cita:
elemento = $(this);
setTimeout("infoOpen(elemento)", 370);