La fecha y la hora son:

/* Otra versión concatenando el resultado al contenido anterior de cada etiqueta:
document.getElementById("a").innerHTML += document.getElementById("h2").innerHTML; document.getElementById("b").innerHTML += escapeHTML(document.getElementById("h1").outerHTML); document.getElementById("c").innerHTML += location.href; document.getElementById("d").innerHTML += location; document.getElementById("e1").innerHTML += screen.width; document.getElementById("e2").innerHTML += screen.height; */ /* Otra versión con códigos escapados var _h2_inner = "innerHTML de id=\"h2\": " + document.getElementById("h2").innerHTML; var _h1_outer = "

outerHTML de id=\"h1\": " + document.getElementById("h1").outerHTML; var _location_href = "location.href: " + location.href; var _location = "

location: " + location; var _screen = "

screen.width: " + screen.width + "; screen.width:: "+ screen.height; document.getElementById("tareas").innerHTML = _h2_inner + _h1_outer + _location_href + _location + _screen; */