Existe-t-il un moyen de vérifier les parents d'un élément et de trouver le premier qui a un arrière-plan CSS défini, puis de renvoyer cette valeur d'arrière-plan ?
Quelque chose comme :
var background = $('element').parents().has(css('background'));
UPDATE : Voici le code que j'utilise maintenant :
jQuery.fn.getBg = function(){
var newBackground = this.parents().filter(function() {
return $(this).css('background-color').length > 0;
}).eq(0).css('background-color');
$(this).css('background-color',newBackground); console.log("new background is: "+newBackground);
};