MCPcopy Create free account
hub / github.com/prototypejs/prototype / purgeCollection_IE

Function purgeCollection_IE

src/prototype/dom/dom.js:1196–1204  ·  view source on GitHub ↗
(elements)

Source from the content-addressed store, hash-verified

1194 }
1195
1196 function purgeCollection_IE(elements) {
1197 var i = elements.length, element, uid;
1198 while (i--) {
1199 element = elements[i];
1200 uid = getUniqueElementID(element);
1201 delete Element.Storage[uid];
1202 delete Event.cache[uid];
1203 }
1204 }
1205
1206 if (HAS_UNIQUE_ID_PROPERTY) {
1207 purgeCollection = purgeCollection_IE;

Callers

nothing calls this directly

Calls 1

getUniqueElementIDFunction · 0.70

Tested by

no test coverage detected