дадада, Enter тоже текст !!!
вот так будет находить, но это костыль
<head>
</head>
<body>
<div id="qwe"><a href="javascript:alert('ok');" name="rt">
<b>Go</b>
</a>
</div>
<br>
<input type="button" value="ok" onclick="qweqe();">
<script>
function qweqe(){
alert((document.getElementById('qwe').firstChild).name);
alert((document.getElementById('qwe').firstChild).nodeType);// тип 3-текстовый узел
}
</script>
</body>