Some times you have a structure like ```html <div> <a href="www.google.com"> <div class="info">Google</div> </a> <a href="www.duckduckgo.com"> <div class="info">Duck Duck Go</div> </a> </div> ``` It'd be convenient to be able to do something like ```javascript $.extract({ engines: [{ selector: "div > a", value: { url: { selector: ":scope", // <-- Here is the problem value: "href" }, info: '.info' } }] }) ```