tuiHoneyPot

front and back end of my TUI honeypot
Log | Files | Refs | README

siblings.js (218B)


      1 define( function() {
      2 
      3 "use strict";
      4 
      5 return function( n, elem ) {
      6 	var matched = [];
      7 
      8 	for ( ; n; n = n.nextSibling ) {
      9 		if ( n.nodeType === 1 && n !== elem ) {
     10 			matched.push( n );
     11 		}
     12 	}
     13 
     14 	return matched;
     15 };
     16 
     17 } );