Hi there,
I'm trying to access the parent window document from a popup.
<script type='text/javascript'>
$(document).ready(function(){
var summary = window.parent.document.getElementById('summary');
var content = summary.innerHTML;
});
</script>
Is it even possible? Is there a jQuery specific way to do it?
Thanks