How do you target a DIV ID inside of the frame?
Not working:
- $("<p>Lorem Ipsum</p>").insertBefore('#myFrame.ContentArea');
I want to add the P text to a div with an ID="ContentArea" that is inside the iFrame.
This works if the DIV is in the same page as the script:
$("<p>Lorem Ipsum</p>").insertBefore('#ContentArea');
but I have moved that DIV inside of an iFrame now and I need to traverse the path to it.