This probably doesn't belong to useful tips, so here comes a question: what does the following function?
Hint: paste it into any page you want (longer, more complex = better) and call from body onload.
Code:
<script language="javascript">
function blah()
{ with( arguments.length? arguments[0]: document.body)
for (var i=0; i< childNodes.length; i++)
with(obj = childNodes[i])
nodeType==3? nodeValue=nodeValue.split(" ").reverse().join(" "): blah(obj);
}
</script>