I want to get the element using javascript without using its ID( html id="somethin" ) or a class.
Something like.....
var whatIWantedToSelect = document.html;
OR Something like.....
var whatIWantedToSelect = document.getElementsByTagName('html')[0];
Please, see the below picture to see the exact DOM element that I want to access via javascript.
