JavaScript journal html élément comme objet DOM

var el = document.getElementById("myId"); 
console.log(el); // logs the html of element <div>…</div>
console.dir(el); // logs the element’s properties and values
Friendly Hawk