How do I access a global object or array defined in a parent window in the child window.
<script>
var events_data;
function function_to_fill_events_data () {
.
.
.
}
</script>
<div>
<div><iframe src="mini.php" width:100%; height: 100%;" scrolling="no"></iframe> </div>
</div>
When I am in the mini document I'd like to be able to access the events_data variable in a javascript function.