I have a parent screen, containing a button, on click of which window.open("URL", "MsgWindow", "width=200,height=100"); is invoked, which in turn returns to child screen.
The child screen also contains some buttons which perform CRUD operations, using request-response mechanism, due to which the URL of the parent window needs to be updated, and hence, reloading of parent screen is required.
I want to disable the parent screen irrespective whether the parent screen gets reloaded.
I found jQuery block UI relevant for this option but found following 2 issues:
Using jQuery block UI disabled the parent screen only until it get reloaded. After reloading, it again became enabled while my child pop-up was still open.
jQuery block UI supports IE version 9 & above, but my requirement is to make IE version 5 compatible.
Please suggest correct solution for this scenario.