Recently, I noticed that browsers automatically create variables to reference elements with id. For example, stackoverflow logo on this page
<div id="hlogo">
<a href="/">Stack Overflow</a>
</div>
or question info at the right side
<table id="qinfo"></table>
You can access these by just using their id. Try it on the console.
What I want to know is that when was this feature (if it's) implemented? What of its future? Where can I find the documentation?