I have coded a few lines which extract the URL of all the img tags in the page. Ok everything works well but I wonder if there is a way to apply my code in a special div in the page!!!? I mean I want to get URL of img tags from a div not from the whole page body. I hope that I explained clearly what I meant :) Any solution would be appreciated
function getURL() {
var url = [];
var a = document.getElementsByTagName('img');
for (var i=0, j = a.length; i<j; i++)
{
if (/\.(jpg|jpeg|gif|png)$/im.test(a[i].getAttribute('src')))
{
url.push(a[i].getAttribute('src'));
}
}
document.write(url);
}