Created
November 25, 2010 03:28
-
-
Save anonymous/714851 to your computer and use it in GitHub Desktop.
jQuery 'deepest' plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.fn.deepest = function() { | |
/// <summary> | |
/// Return the deepest child of this element. | |
/// For example, when run on this structure: | |
/// | |
/// <div> | |
/// <span> <b>pick me!</b> </span> | |
/// <span> </span> | |
/// </div> | |
/// | |
/// It would return the element: | |
/// | |
/// <b>pick me!</b> | |
/// </summary> | |
var levels = 0; | |
var deepest; | |
$(this).find('*').each(function() { | |
if( !this.firstChild || this.firstChild.nodeType !== 1 ) { | |
var levelsFromThis = $(this).parentsUntil(this).length; | |
if(levelsFromThis > levels) { | |
levels = levelsFromThis; | |
deepest = this; | |
} | |
} | |
}); | |
return $(deepest); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This plugin seems to be more complex and has a little more functionality: https://github.com/martinille/jquery.deepest.js