So pretty much I have an html that has an iFrame.
<iframe src="frame.html" width="2000" height="1000"></iframe>
Now, from within the iFrame js I try to call jQuery's append function to add a DIV to the parent window...
$("body", window.parent.document).append("<div id=\"test\" ></div>");
That code works perfectly fine under FireFox and IE, but for some reason it doesn't work under Chrome, and I've tried Googling the cause of this with little to no luck.
Just FYI, this was all done under jQuery 2.0.0.