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

Function getAll

2.1.1/src/manipulation.js:123–131  ·  view source on GitHub ↗
( context, tag )

Source from the content-addressed store, hash-verified

121}
122
123function getAll( context, tag ) {
124 var ret = context.getElementsByTagName ? context.getElementsByTagName( tag || "*" ) :
125 context.querySelectorAll ? context.querySelectorAll( tag || "*" ) :
126 [];
127
128 return tag === undefined || tag && jQuery.nodeName( context, tag ) ?
129 jQuery.merge( [ context ], ret ) :
130 ret;
131}
132
133// Fix IE bugs, see support tests
134function fixInput( src, dest ) {

Callers 1

manipulation.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected