0

A is Parent application and B is child application .

B will be launched from A . when there is session timeout in application A , i need to show intimation popup . I can show the popup on top of Application A (parent window ). lets say user is using application B (Child window) then they do not know that popup got displayed in application A (parent window) . So i want to show pop on child window which is B .

the solution which i am expecting is how to show popup on top of current application which can be A (parent window ) or B (Child window) .

Thanks in Advance

silvesterprabu
  • 1,417
  • 10
  • 30
  • 46

1 Answers1

0

window.focus should bring your popup window to foreground, independent from the opener's position.

Ingo Steinke
  • 766
  • 3
  • 11
  • 30