MCPcopy Index your code
hub / github.com/JsAaron/jQuery / getAll

Function getAll

1.7/manipulation.js:536–546  ·  view source on GitHub ↗
( elem )

Source from the content-addressed store, hash-verified

534});
535
536function getAll( elem ) {
537 if ( typeof elem.getElementsByTagName !== "undefined" ) {
538 return elem.getElementsByTagName( "*" );
539
540 } else if ( typeof elem.querySelectorAll !== "undefined" ) {
541 return elem.querySelectorAll( "*" );
542
543 } else {
544 return [];
545 }
546}
547
548// Used in clean, fixes the defaultChecked property
549function fixDefaultChecked( elem ) {

Callers 1

manipulation.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected