Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

document.queryselectorall extract all href element

[].forEach.call( document.querySelectorAll('img.PinImageImg'), 
function  fn(elem){ 
    console.log(elem.src);
});
Source by h3manth.com #
 
PREVIOUS NEXT
Tagged: #extract #href #element
ADD COMMENT
Topic
Name
1+6 =