MCPcopy Create free account
hub / github.com/unconed/TermKit / getAll

Function getAll

HTML/jquery.js:5953–5963  ·  view source on GitHub ↗
( elem )

Source from the content-addressed store, hash-verified

5951});
5952
5953function getAll( elem ) {
5954 if ( "getElementsByTagName" in elem ) {
5955 return elem.getElementsByTagName( "*" );
5956
5957 } else if ( "querySelectorAll" in elem ) {
5958 return elem.querySelectorAll( "*" );
5959
5960 } else {
5961 return [];
5962 }
5963}
5964
5965// Used in clean, fixes the defaultChecked property
5966function fixDefaultChecked( elem ) {

Callers 1

jquery.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected