Vaya, por unos momentos me has puesto en duda. Pero no, después de probarlo en IE, FF, Opera y Chrome
Código Javascript
:
Ver original<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript">
function funcion() {
alert(document.getElementById('6').innerHTML);
}
</script>
</head>
<body>
<input type="button" onclick="funcion()" value="ver" />
<div id="6" name="ultimanoticia" class="visible">
<p>
Noticia 6
</p>
</div>
</body>
</html>