Calling parent window from opened child popup window

This is a way to call the parent window from the popup it launched without adding hooks (just using the built in functionality).

From the parent window opening can be as simple as:

window.open('child.html');

From the child popup window to get a hook method “methodName” from the parent window:

window.opener.methodName();

From the child popup window to get a hook to the parent window elements:

window.opener.document.getElementById("sample").value;
 
2
Kudos
 
2
Kudos

Now read this

Using Angular $compile to Escape Watcher Hell

This is a blog on how to handle repeating directive elements without using the ng-repeat directive when using AngularJS. We’ll keep this blog high level and assume the reader knows Angular development. Sample: <div ng-repeat='spell in... Continue →