Collections:
Other Resources:
Popup Windows Triggers When Pages Are Loaded without Use onload Attribute
How to trigger popup windows when pages are loaded with JavaScript, but not using the "onload" attribute
✍: FYIcenter.com
If you want to trigger a popup window whenever a Web page is unloaded, you can enter JavaScript code directly in the HTML HEAD block. See the following JavaScript code outline:
/*
* Popup Blocker Test - P_HEAD_ONLOAD
* - Popup Windows Triggered by Page Loading Events
*
* A popup window shows up when a page is loaded into the
* browser. JavaScript codes implemented in the HEAD tag
* directly.
*
* Version of 2007.01.01
* Download at http://sqa.fyicenter.com/tools/
* Copyright (C) 2007 FYIcenter.com. All rights reserved.
*/
fyicenterWin = window.open('', 'Popup', 'toolbar=no,sc...
fyicenterWin.document.write('<html><body bgcolor="#eee...
fyicenterWin.document.write('<p><b>P_HEAD_ONLOAD Test<...
fyicenterWin.document.write(' - Popup Window Triggered...
fyicenterWin.document.write(' - Developed by FYIcenter...
fyicenterWin.document.write('<p><img src="/popup_test_...
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_HEAD_ONLOAD page to get the complete source code and to see how it works.
2007-01-17, ∼8079🔥, 0💬
Popular Posts:
How to remove jusched.exe from startup program list? jusched.exe is a background process from Sun to...
What is "Microsoft SharePoint Workspace Audit Service" in my Windows 7 service list? And how is "Mic...
Can I remove startup application "SynTPLpr.exe - TouchPad Driver Helper Application" to speedup my c...
Where are services hosted by "svchost.exe -k netsvcs" on Windows XP? What is the meaning of "-k nets...
How to review Internet Explorer (IE) add-on or Browser Helper Object (BHO) tools on Windows XP with ...