Simplemente pruebe esta función (puede que no solo funcione para divs):
function resized(elem, func = function(){}, args = []){
elem = jQuery(elem);
func = func.bind(elem);
var h = -1, w = -1;
setInterval(function(){
if (elem.height() != h || elem.width() != w){
h = elem.height();
w = elem.width();
func.apply(null, args);
}
}, 100);
}
Puedes usarlo así
resized( '.advs-columns-main > div > div', function(a){
console.log(a);
console.log(this);
}, ['I\'m the first arg named "a"!']);
ACTUALIZACIÓN:
también puede usar un observador más progresivo (puede funcionar para cualquier objeto, no solo para elementos DOM):
function changed(elem, propsToBeChanged, func = function(){}, args = [], interval = 100){
func = func.bind(elem);
var currentVal = {call: {}, std: {}};
$.each(propsToBeChanged, (property, needCall)=>{
needCall = needCall ? 'call' : 'std';
currentVal[needCall][property] = new Boolean();
});
setInterval(function(){
$.each(propsToBeChanged, (property, needCall)=>{
try{
var currVal = needCall ? elem[property]() : elem[property];
} catch (e){
var currVal = elem[property];
needCall = false;
propsToBeChanged[property] = false;
}
needCall = needCall ? 'call' : 'std';
if (currVal !== currentVal[needCall][property]){
currentVal[needCall][property] = currVal;
func.apply(null, args);
}
});
}, interval);
}
Solo inténtalo:
var b = '2',
a = {foo: 'bar', ext: ()=>{return b}};
changed(a, {
foo: false,
ext: true
}, ()=>{console.log('changed')})
Registrará 'cambiado' cada vez que cambie b, a.foo o a.ext directamente