I am trying to open child window like this
{
var popWindow = window.open(postUrl, "popupWindow", settings);
}
Now I want to access some parent script functions.If I directly invoke will get undefined function exception like this
(Uncaught ReferenceError: getAllFilter is not defined)
How to solve this issue.