parent
cc84542afc
commit
73131057b1
@ -0,0 +1,34 @@ |
||||
(function( $ ){ |
||||
$.fn.nextElementInDom = function(selector, options) { |
||||
return $(this).findElementInDom(selector, $.extend(options, { direction: 'front' })); |
||||
}; |
||||
|
||||
$.fn.previousElementInDom = function(selector, options) { |
||||
return $(this).findElementInDom(selector, $.extend(options, { direction: 'back' })); |
||||
}; |
||||
|
||||
$.fn.findElementInDom = function(selector, options) { |
||||
var defaults, parent, direction, found, children; |
||||
defaults = { stopAt : 'body', direction: 'front' }; |
||||
options = $.extend(defaults, options); |
||||
|
||||
parent = $(this).parent(); |
||||
|
||||
direction = (options.direction === 'front') ? ":gt" : ":lt"; |
||||
children = parent.children(direction + "(" + $(this).index() + ")"); |
||||
children = (options.direction === 'front') ? children : children.reverse(); |
||||
|
||||
found = parent.children(direction + "(" + $(this).index() + ")").find(selector).filter(":first"); |
||||
|
||||
if (found.length > 0) { |
||||
return found; |
||||
} else { |
||||
if (parent.length === 0 || parent.is(options.stopAt)) { |
||||
return $([]) |
||||
} else { |
||||
return parent.findElementInDom(selector, options); |
||||
} |
||||
} |
||||
}; |
||||
|
||||
})( jQuery ); |
Loading…
Reference in new issue