On a internal page you can get the background image easily with jQuery. For example:
var url = $('.headerImg').css('background-image');
But how to get the url from an external website ? For a better understanding what is meant here - of course this is not possible:
var url = $('www.website.de:/.headerImg').css('background-image');
Is there any way?