Jquery - Check when a class is removed by the developer tool

3

How do I check when a class is removed by the developer tool with jquery?

    
asked by anonymous 04.08.2015 / 20:35

1 answer

2

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.

link

    
04.08.2015 / 20:55