I have a document with the following structure:
<div id="Prueba">
<iframe id="myiframe1">
<div id="div_Actual"></div>
</iframe>
</div>
I want to know if from the html page that is in the iframe, I can access the div element with id = 'Test' this to change the size of the element I want or manipulate it with css, I have tried with jquery in the following way but it does not give me:
$(this).parent().parent().attr('id');