Ver Mensaje Individual
  #1 (permalink)  
Antiguo 16/08/2009, 12:22
Avatar de Legoltaz
Legoltaz
 
Fecha de Ingreso: agosto-2008
Mensajes: 325
Antigüedad: 16 años, 4 meses
Puntos: 6
Problema con getElementById() simplificado

Hola, me ha surgido este problema al intentar simplificar el método getElementById();

Código javascript:
Ver original
  1. function get(id){
  2.     return document.getElementById(id);
  3. }

Al llamar a get('una_id') no ocurre nada. ¿Cuál es el problema?

En cambio he hecho lo mismo con la función alert() y sí funciona.