From: Jörn Zaefferer Date: Sat, 16 Sep 2006 15:50:35 +0000 (+0000) Subject: Fixed bug #178 X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=1293e80ff9afa96198c81fa79aa267a4ee44d9d1 Fixed bug #178 --- diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index ac263bc..dca1867 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1916,15 +1916,17 @@ jQuery.extend({ */ sibling: function(elem, pos, not) { var elems = []; - - var siblings = elem.parentNode.childNodes; - for ( var i = 0; i < siblings.length; i++ ) { - if ( not === true && siblings[i] == elem ) continue; - - if ( siblings[i].nodeType == 1 ) - elems.push( siblings[i] ); - if ( siblings[i] == elem ) - elems.n = elems.length - 1; + + if(elem) { + var siblings = elem.parentNode.childNodes; + for ( var i = 0; i < siblings.length; i++ ) { + if ( not === true && siblings[i] == elem ) continue; + + if ( siblings[i].nodeType == 1 ) + elems.push( siblings[i] ); + if ( siblings[i] == elem ) + elems.n = elems.length - 1; + } } return jQuery.extend( elems, {