Jak sprawdzić właściwości elementu w konsoli

var tag = document.getElementsByTagName('yourTag');
console.dir(tag);
Code Rabbi