How do I check when a class is removed by the developer tool with jquery?
How do I check when a class is removed by the developer tool with jquery?
I do not advise, but follow the code
$(function(){
var repetirEmMiliSegundos = 10000;//10 segundos
setInterval(function() {
if($('.nomeDaClasse').length > 0){
//Ainda existe
}
}, repetirEmMiliSegundos);
});
Just run a js in the background.