how to exclude a specific tag name from a javascript query search code example
Example: how to exclude a specefic tagname from a javascript query search
var elems = document.querySelectorAll("body > *:not()");
//tag will go inside the not function like so:
var elems = document.querySelectorAll("body > *:not(img)");