Option 1
Your title has a child window. If you have a child window, not an iframe, use this:
window.opener.events_data
Check window.opener in MDN .
Option 2
Your code indicates that you are using an iframe. From iframe, just use parent :
parent.events_data;
Check window.parent in MDN .
window.opener - returns a link to the window that opens this current window.
window.parent - When a window loads in a, or, its parent is a window with an element, a window attachment.
source share