Для этого вам нужно использовать MutationObserver .Он следит за изменениями в DOM (например, удаляются / добавляются классы) и запускает функцию обратного вызова, которую вы можете использовать в любом случае.
// Select the node that will be observed for mutations
var targetNode = document.getElementById('gridview');
// Options for the observer (which mutations to observe)
var config = { attributes: true };
// Callback function to execute when mutations are observed
var callback = function(mutationsList, observer) {
for(var mutation of mutationsList) {
if (mutation.type == 'attributes') {
// Triggers when an attribute like 'class' is modified
console.log('The ' + mutation.attributeName + ' attribute was modified.');
}
}
};
// Create an observer instance linked to the callback function
var observer = new MutationObserver(callback);
// Start observing the target node for configured mutations
observer.observe(targetNode, config);
Позже вы можете прекратить наблюдения с помощью
observer.disconnect();