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

Function getAll

1.6.1/src/manipulation.js:501–511  ·  view source on GitHub ↗
( elem )

Source from the content-addressed store, hash-verified

499});
500
501function getAll( elem ) {
502 if ( "getElementsByTagName" in elem ) {
503 return elem.getElementsByTagName( "*" );
504
505 } else if ( "querySelectorAll" in elem ) {
506 return elem.querySelectorAll( "*" );
507
508 } else {
509 return [];
510 }
511}
512
513// Used in clean, fixes the defaultChecked property
514function fixDefaultChecked( elem ) {

Callers 1

manipulation.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected