Actually, garbage collected, destroyed, or otherwise blown out of scope. What I want to do is unbind event handlers on non-dom elements when an object that has called the bind method is destroyed.
EDIT: I've looked at my code some more, and decided that the only place where I really need this is when the module that contains the object is no longer needed. This is typically when the user loads a new view (it's like "goes to a new page" but in AJAX, right?). So what I did was wrote a simple wrapper method around the bind method, which modifies the callback function to additionally unbind the handler on custom "viewchange" event. Then I ensure that the "viewchange" is actually triggered whenever the view is changed.