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:
Popup Windows Triggers When Pages Are Loaded
How to trigger popup windows automatically when pages are loaded with JavaScript?
✍: FYIcenter.com
If you want to generate a popup window whenever a Web page is loaded, you can use the "onload" attribute in the HTML BODY tag to call a predefined JavaScript function. See the following JavaScript code outline:
<body onload="pBodyOnloadTest();"> ... /* * Popup Blocker Test - P_BODY_ONLOAD * - Popup Windows Triggered by Page Loading Events * * A popup window shows up when a page is loaded into the * browser. JavaScript codes implemented on the onload * event of the BODY tag. * * Version of 2007.01.01 * Download at http://sqa.fyicenter.com/tools/ * Copyright (C) 2007 FYIcenter.com. All rights reserved. */ function pBodyOnloadTest() { fyicenterWin = window.open('', 'Popup', 'toolbar=no,sc... fyicenterWin.document.write('<html><body bgcolor="#eee... fyicenterWin.document.write('<p><b>P_BODY_ONLOAD Test<... fyicenterWin.document.write(' - Popup Window Triggered... fyicenterWin.document.write(' - Developed by FYIcenter... fyicenterWin.document.write('<p><img src="/popup_test_f... fyicenterWin.document.write('If you see this popup win... fyicenterWin.document.write('</body></html>'); fyicenterWin.document.close(); } </script>
You can also visit Popup Blocker Test - P_BODY_ONLOAD page to get the complete source code and to see how it works.
2007-01-17, 7443👍, 0💬
Popular Posts:
What is "Remote Access Auto Connection Manager" in my Windows 7 service list? And how is "Remote Acc...
Where to find tutorials on managing Windows 7 scheduled tasks? Here is a collection of tutorials on ...
A collection of 24 tutorials on removing Windows startup programs to gain performance and reduce sec...
What is shdocvw.dll DLL file - Shell Doc Object and Control Library? DLL shdocvw.dll is the Microsof...
How to remove VSAdd-in.dll and VSAdd-in toolbar? If you want to remove VSAdd-in toolbar from your IE...