querySelector().href code example
Example 1: query selector by href
document.querySelectorAll("[href='href_value']");
Example 2: document.queryselectorall extract all href element
[].forEach.call( document.querySelectorAll('img.PinImageImg'),
function fn(elem){
console.log(elem.src);
});