Please help me.
I would like to implement what I wrote in the title.
-- Parent Window
function test(){
window.open(A);
process_B();
}
function process_B(){
-- some process
}
-- Window A
$( document ).ready(){
process_C();
}
function process_C(){
-- some process
}
I would like to process in the order of A , C, B.
Run process_B after A is closed.
Is it possible??