Ver Mensaje Individual
  #5 (permalink)  
Antiguo 16/08/2009, 14:04
Avatar de goyo_
goyo_
 
Fecha de Ingreso: agosto-2009
Mensajes: 91
Antigüedad: 15 años, 3 meses
Puntos: 1
Respuesta: Problema con getElementById() simplificado

Cita:
Iniciado por Legoltaz Ver Mensaje
Solucionado. El problema (típico en mí xd) es que el script lo había puesto antes del código HTML del que obtengo la id.
Ponlo al fondo antes del </body>, y si es antes del html usa
Código PHP:
window.onload = function() {
//tu codigo
}

window.addEvent('domready', function() {
// tu codgo mootools
});

$(function() {
//tu codigo jquery
});