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

Function isHidden

2.1.1/test/other.js:1399–1404  ·  view source on GitHub ↗
( elem, el )

Source from the content-addressed store, hash-verified

1397var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
1398
1399var isHidden = function( elem, el ) {
1400 // isHidden might be called from jQuery#filter function;
1401 // in that case, element will be second argument
1402 elem = el || elem;
1403 return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
1404 };
1405
1406var rcheckableType = (/^(?:checkbox|radio)$/i);
1407

Callers 6

showHideFunction · 0.70
other.jsFile · 0.70
defaultPrefilterFunction · 0.70
defaultPrefilterFunction · 0.50
showHideFunction · 0.50
css.jsFile · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected