Page is a not externally linkable
Achernar - 11:00 pm on Apr 30, 2007 (gmt 0)
All the elements are immediate childs of the div element (but <head> and <body> disappear).
I've done a little test (just being curious ;) ). function getResponse(e) {
div=document.createElement('div');
div.innerHTML=e.responseText;
alert(div.firstChild);
// use this to list all first-level elements.
//for (var i=0,c;c=div.childNodes[i];i++) alert(c.tagName)
alert(div.innerHTML)
}
IE get rids of everything that is not inside <body> (<head>, <title>, <meta>). Mozilla keeps what was inside the <head> element.