Categories:
Administration (10)
Adware Spyware (7)
Apache (10)
Bluetooth (125)
DOS Commands (1)
Edge (28)
General (2)
Internet Explorer (217)
Media Center (12)
Media Player (11)
Mozilla Firefox (18)
PHP (15)
Programming (8)
Security (4)
Silverlight (15)
Tips (17)
Tools (218)
Tutorials (5)
Windows 10 (166)
Windows 7 (636)
Windows 8 (1091)
Windows Phone (33)
Windows Server 2008 (165)
Windows Server 2012 (84)
Windows Server 2016 (23)
Windows Vista (52)
Collections:
Other Resources:
Triggering Popup Windows Repeatedly with Fixed Intervals
How to trigger popup windows repeatedly with fixed intervals?
✍: FYIcenter.com
If you want to trigger a popup window repeatedly with a fixed interval, you can use the window.setTimeout() method to delay calling of a predefined function. See the following JavaScript code outline:
<a href="/javascript:pWindowSetIntervalStart();">Click... ... <a href="/javascript:pWindowSetIntervalStop();">Click ... ... <script> /* * Popup Blocker Test - P_WINDOW_SETINTERVAL * - Popup Windows Triggered at Fixed Time Intervals * * A series of popup window shows up with a fixed time * interval after the page is loaded into the browser. * JavaScript codes implemented with a setInterval method * call. * * Version of 2007.01.01 * Download at http://sqa.fyicenter.com/tools/ * Copyright (C) 2007 FYIcenter.com. All rights reserved. */ function pWindowSetIntervalStart() { fyicenterTimer = window.setInterval(pWindowSetInterval... } function pWindowSetIntervalStop() { window.clearInterval(fyicenterTimer) } function pWindowSetInterval() { fyicenterWin = window.open('popup_blocker_test_popup_h... '', 'toolbar=no,scrollbars=no,resizeable=no,width=4... } </script>
You can also visit Popup Blocker Test - P_WINDOW_SETINTERVAL page to get the complete source code and to see how it works.
2021-03-10, 9034👍, 2💬
Popular Posts:
How to remove BacsTray.exe from the startup application list to gain performance and reduce security...
Where to find tutorials on using Windows 8 Security? Here is a collection of tutorials on Windows 8 ...
UpdateUI.exe at startup ,how to remove it Actually, you should keep UpdaterUI.exe as a startup, beca...
What is HelpHost.exe - Microsoft Help Center Hosting Server? HelpHost.exe is the executable binary f...
How to burn or record MP3 music files as audio tacks to audio CD (Compact Disk Digital Audio or CD-D...