I am trying to access a 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 possible? Is there a jQuery way to do this?
thanks
source
share