Collections:
Other Resources:
Popup Windows Triggers Based on Mouse Over Links
How to trigger popup windows based on mouse over links with JavaScript?
✍: FYIcenter.com
If you want to trigger a popup window when user moves the mouse over a hyper link, you can use the "onmouseover" attribute in the HTML tag to call a predefined JavaScript function. See the following JavaScript code outline:
<a href="/#top" onmouseover="pLinkOnmouseover();">Mover yo...
...
<script language="JavaScript">
/*
* Popup Blocker Test - P_LINK_ONMOUSEOVER
* - Popup Windows Triggered by Mouse Moving Over Links
*
* A popup window shows up when you move your mouse over a
* hyper link. JavaScript codes implemented on the
* onmouseover event of any type of link tag.
*
* Version of 2007.01.01
* Download at http://sqa.fyicenter.com/tools/
* Copyright (C) 2007 FYIcenter.com. All rights reserved.
*/
function pLinkOnmouseover() {
fyicenterWin = window.open('', 'Popup', 'toolbar=no,sc...
fyicenterWin.document.write('<html><body bgcolor="#ee'...
fyicenterWin.document.write('<p><b>P_LINK_ONMOUSEOVER ...
fyicenterWin.document.write(' - Popup Windows Triggere...
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><...
fyicenterWin.document.close();
}
</script>
2007-01-17, ∼9058🔥, 0💬
Popular Posts:
How to use sc.exe command to delete an existing service? If you want to delete a service created by ...
What is lsass.exe process - LSA Shell (Export Version)? Process lsass.exe is the Local Security Auth...
Checking FTP Server Log File If you look the settings, you will find out that the log file is locate...
Can I remove startup application "reader_sl.exe - Adobe Acrobat Reader Speed Launch" to speedup my c...
What is the scheduled task "\Microsoft\Windows\Sysm ain\WsSwapAssessmentTask "on my Windows 8 compute...