I guess I was just thinking to do something like:
var disconnectSubtree= function(elem) {
nodeWalk(elem, function (node) {
node = getElement(node);
disconnectAll(node);
return node.childNodes;
});
};
Actually implementing disconnectAll() for a single DOM element would be
more difficult.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"MochiKit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/mochikit
-~----------~----~----~----~------~----~------~--~---