You can call the parent window JavaScript method from an iframe like this.
window.parent.methodName();
If you want to access any item from the parent window.
$('elementSelector', window.parent).doAnyJQueryOperation();
If you want to send a message to the parent window.
window.parent.alert('Message from iframe');
source share