Could someone tell me how could I create a function which would initate after outer height has changed?
$("#some_id").bind("outerHeight().change", function () {
do something
});
or
$("#someid").outerHeight().change(call some function);
Thank you.
Custom events are the only i that i know of that can achieve this. can get a little messy though.
https://jsfiddle.net/1rnjkrdk/1/
Have you target listening to a particular event, then trigger said event on the target when you are ready.