Live listener event Cleanup

With Dom7 - what is the best way to have a mass clean up for anonymous live listener events; I was hoping that I could just call $(document.getElementById(“my_div_container”)).off(“change”) but that that requires the function signature to remove.

I did find in the source code that I could just access dom7Listeners of the element which looks like it would remove the listener, however are there any other internals I should be made aware of?

Otherwise, this achieves what I want
delete document.getElementById("my_div_container").dom7Listeners;