I know similar questions have been asked before but none of the solutions worked for me so far.
$(document).ready(function(){
alert($('#my_iframe').contents().html()); //displays null
});
I have a thickbox that includes an iframe. The iframe contains an image uploading/cropping tool, and I need to extract the uploaded image url and use it in the iframe parent.
How can I accomplish this? Is that even possible? Thanks for your help!