- a) Contenido de innerHTML de elemento identificado por id="h2"
document.getElementById("h2").innerHTML;
resultado:
- b) Contenido de outerHTML de elemento identificado por id="h1"
document.getElementById('h1').outerHTML;
resultado:
- c) Contenido de de la propiedad global: location.href
location.href;
resultado:
- d) Contenido de de la propiedad global: location
if (navigator.geolocation) {navigator.geolocation.getCurrentPosition(showPosition);}
else { x.innerHTML = "Geolocation is not supported by this browser.";}
function showPosition(position) {
x.innerHTML = "Latitude: " + position.coords.latitude +
"Longitude: " + position.coords.longitude;
}
resultado:
- e) Contenido de de las propiedades globales: screen.width y screen.heigth
screen.width
screen.height;
resultado: