I got an error, if I try this:
var Box = $(window.parent.document).find("#box"); // works fine
var BoxContent = $(Box+" .bg > .content").text(); // error
console.log(BoxContent);
Error message ("Uncaught Error: Syntax error, unrecognized expression: [object Object] .bg .content")
What is my fail?