I need the calling browser window to reload when the modal popup window closes.
Return to Recent Questions
Q:
I recently decided to begin using the modal popup window and need
the calling browser window to reload when the deluxe-popup closes.
A:
You can add an event when you close your popup window in the following way:
document.getElementById('ID').onclose = function(){ call(parameter1, parameter2); };
where ID is the ID of your window.
Add this code after you call your data file or deluxePopupWindow.open function.
Return to Recent Questions
Related:
|