I\'m trying to detect when my document height changes. Once it does, I need to run a few functions to help organize my page layout.
document
I\'m not looking fo
Just my two cents. If by any chance you're using angular then this would do the job:
$scope.$watch(function(){ return document.height(); },function onHeightChange(newValue, oldValue){ ... });