Well, as far as I know, jQuery does not move such objects - just the DOM. You can write a little function to do this:
function findSomething(object, name) { if (name in object) return object[name]; for (key in object) { if ((typeof (object[key])) == 'object') { var t = findSomething(object[key], name); if (t) return t; } } return null; }
It should be obvious that I did not use this feature through a complex QA process.
source share