The document variable refers to a memory object in JavaScript that does not correspond to anything in the HTML or the DOM tree. It is, instead, the object that contains the DOM tree. It is, in turn, contained by the Window object, which is the global object in browser-based Javascript.
The <html> element, on the other hand, is part of the DOM tree. So you can get it the same way you can get any other element, with e.g. document.getElementsByTagName('html')[0]. But since it's the root of the DOM tree, that's kind of silly; you can access it directly as document.documentElement. That works for the root of any DOM document, including XML (perhaps returned by an Ajax call). In the usual case of an HTML document, you would probably just use document.html. Or the jQuery equivalent.
$(document)and the HTML root with$('html')- what other type of ID do you want to set? – doublesharp Oct 27 '12 at 1:34