Ver Mensaje Individual
  #5 (permalink)  
Antiguo 28/03/2018, 19:57
alvaro_trewhela
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Condicional cuando imagen dentro de clase

function isBGimg(obj,i){
var img = obj.style.backgroundImage;
var spl = img.split("/");
img = spl[spl.lenght-1];
img = img.substring(0,-3); //remove: ');
if(img == i){ return true; }
return false;
}

Prueba con eso esa funcion debería darte true si la bg es es la misma que i

El parametro obj toma el objeto a verificar