I create a listener for the browser window by doing the following line:
$(window).resize(resizeObjects);
My problem is at some point of the web application cycle I want to unwire this event from window.resize. Does anyone know how to unhook resizeObjects from the window.resize event?
Do you mean
.unbind()?