MCPcopy Index your code
hub / github.com/unconed/TermKit / findInputs

Function findInputs

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

Source from the content-addressed store, hash-verified

5970}
5971// Finds all inputs and passes them to fixDefaultChecked
5972function findInputs( elem ) {
5973 if ( jQuery.nodeName( elem, "input" ) ) {
5974 fixDefaultChecked( elem );
5975 } else if ( elem.getElementsByTagName ) {
5976 jQuery.grep( elem.getElementsByTagName("input"), fixDefaultChecked );
5977 }
5978}
5979
5980jQuery.extend({
5981 clone: function( elem, dataAndEvents, deepDataAndEvents ) {

Callers 1

jquery.jsFile · 0.85

Calls 1

fixDefaultCheckedFunction · 0.85

Tested by

no test coverage detected