MCPcopy Create free account
hub / github.com/TruthHun/BookStack / siblings

Function siblings

static/wangEditor/js/lib/jquery-2.2.1.js:2704–2714  ·  view source on GitHub ↗
( n, elem )

Source from the content-addressed store, hash-verified

2702
2703
2704var siblings = function( n, elem ) {
2705 var matched = [];
2706
2707 for ( ; n; n = n.nextSibling ) {
2708 if ( n.nodeType === 1 && n !== elem ) {
2709 matched.push( n );
2710 }
2711 }
2712
2713 return matched;
2714};
2715
2716
2717var rneedsContext = jQuery.expr.match.needsContext;

Callers 1

jquery-2.2.1.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected