Mmm, pues no me funciona... Me devuelve undefine
Código Javascript
:
Ver original<html>
<head>
<script>
function search() {
var texto = document.documentElement.innerText;
console.log(texto); //undefined
}
</script>
</head>
<body>
<input type="button" value="Find" onclick="search();" id="searchButton">
Prueba<br>
<p>Prueba2</p>
</body>
</html>