I know it's possible to bind on re-size with:
$(window).bind('resize', myFunction)
However
$(window).bind('zoom', myFunction)
Does not work. The event I am trying to bind on is when you zoom and make text bigger cmd + or ctrl + . Anyone how to bind to that event? Thank you.