I would like to know if there is a way to detect that a scaling event has occurred. I could achieve this using iOS event binding
$(document).bind('gesturechange',function(event){
zoomAdjust();
});
Is there such an event for Android devices?
source
share