Página realizada por
DENNIS MANZANARES
La fecha y la hora son:
a) Contenido de innerHTML de elemento identificado por id="h2":
document.writeln(document.getElementById("h2").innerHTML)
|
c) Contenido de la propiedad global: location.href
document.writeln(document.location.href)
|
d) Contenido de la propiedad global: location
document.writeln(location)
|
e) Contenido de las propiedad Globales: screen.width y screen.height es:
document.writeln(" screen.width=" + screen.width + " y screen.height =" + screen.height)
|
b) Contenido del outerHTML del elemento identificado por id="h1" es:
document.writeln(document.getElementById("h1").outerHTML)
|