Collections:
Other Resources:
Generating Popup Windows that Opens Again When They Are Closed
How to generate popup windows that opens again when they are closed?
✍: FYIcenter.com
If you want to generate a popup window that opens again right after you close it, you can use the "closed" attribute of the window object to call the open function repeatedly. See the following JavaScript code outline:
<a href="javascript:pWindowSetTimeoutTest();">Click...
...
<script>
/*
* Popup Blocker Test - P_WINDOW_REOPEN
* - Popup Windows Open Again If They Are Closed
*
* A single popup window that will open again if you close
* it. JavaScript codes used to check the closed status.
*
* Version of 2007.01.01
* Download at http://sqa.fyicenter.com/tools/
* Copyright (C) 2007 FYIcenter.com. All rights reserved.
*/
function pWindowReopenStart() {
fyicenterTimer = window.setInterval(pWindowReopen,1000);
}
function pWindowReopenStop() {
window.clearInterval(fyicenterTimer)
}
function pWindowReopen() {
if (typeof fyicenterWin == 'undefined' || fyicenterWin...
fyicenterWin = window.open('popup_blocker_test_popu...
'', 'toolbar=no,scrollbars=no,resizeable=no,widt...
}
}
</script>
You can also visit Popup Blocker Test - P_WINDOW_REOPEN page to get the complete source code and to see how it works.
2007-01-17, ∼9561🔥, 0💬
Popular Posts:
What is the "McClientAnalytics.exe" process on windows 7? Is the "McClientAnalytics.exe" process a v...
I have created a table in MS Access. How do I create a form to help enter data into the table? Assum...
What is the scheduled task "\Microsoft\Windows\Sett ingSync\BackgroundUpload Task"on my Windows 8 com...
What is "Telephony" in my Windows XP service list? And how is "Telephony" service related to TapiSrv...
What Is Vundo Related vtsts.dll? 1. From www.bullguard.com/forum/ 8/DowloadTrojan-Virus-vt stsdll_1434...