views:

22

answers:

1

Is there anyway to find the file path of images being showed to user in web page , or anyway to find them ?

I want source code/programming .

A: 

Just use the src attribute of the image tag in question if its in the html. Otherwise you have to check the computed css for the text url in the background and background-image rules.

CrazyJugglerDrummer
To do this for all images on the page, loop over all the elements in `doc.getElementsByTagName('img')`
MatrixFrog