I'm in the middle of writing a plugin and I'd like to be able to get the original selector that jQuery used to create the object.
So if you wanted to apply something like .siblings() you could get all the siblings of that type, whether it looks up siblings of a certain class or siblings of a certain element type.
jQuery('div')- 'div'jQuery(jQuery('div'))- [jQuery] object // would require recursively finding the selector of thisjQuery('#elment')- '#element'jQuery('.class')- '.class'
