Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/07/2009, 08:09
Avatar de uselox
uselox
 
Fecha de Ingreso: agosto-2008
Ubicación: Lima, Perú
Mensajes: 168
Antigüedad: 16 años, 2 meses
Puntos: 12
Respuesta: apuntar a un elemento en prototype

lo podes hacer haci, luego acceder a los elementos
Código HTML:
<script type="text/javascript">
function __find(){
	var content = $('contenedor');
	var node_list = content.childNodes, content_2 = '';
	for(var i in node_list){
		content_2 += 'obj.' + i + ' = ' + node_list[i] + '\n';
	}
	return alert(content_2);
}
</script> 
...

Código HTML:
<a href="javascript:;" onclick="__find();">Click Me</a>
<div id="contenedor">
  <div id="first_child"></div>
  <div id="other_child"></div>
  <div id="last_child"></div>
</div> 
si quieres el primer elementos usa
Código HTML:
content.firstChild

saludos...