HTML - Pasar hijos internos de un nodo a función
Esto también te interesa!
PREGUNTAS SIMILARES
#2
myfunc(obj){ alert(obj.childNodes[0].nodeValue); }
Y lo siguiente en tu html para finalizar:
<a href="#" onclick="myfunc(document.getElementByID('target')); return false;">click</a> <div id="target">contenido</div>