How to make when a pop up is open, we are not allow to switch to primary
page until we close the popup page?
thanks.
page until we close the popup page?
thanks.
function startA() {
window.open("popup.htm");
check=prompt("process?");
if (check) {
alert(window.aaa); //aaa is a variable return from popup page
}
window.opener.aaa="okok";
Comment