i am searching for a way to select all objects, with a specified backgroundImage.
I have already tried things like:
$.each($('*'), function(){
if ($(this).css('backgroundImage')){
console.info("backroundimage");
}else {
console.info("no backgroundimage");
}
});
Some better ideas?
Filters?