Currently, I am developing a control panel application where each tool loads its own Javascript file. These files mostly contain Knockout bindings. Although Knockout itself is loaded in the document head, the tools are loaded asynchronously into a #body div. My main concern is that elements may continue to be bound even after a different tool is loaded. This could potentially lead to memory leaks and glitches if the same element is bound multiple times. Is there a way to clear all Knockout bindings at once before loading a new tool?