Phiên bản đầy đủ: jsB@nk » Trình duyệt » Cửa sổ » Popup khi rê chuột
URL: https://www.javascriptbank.com/popup-onmouseover.html
Hiệu ứng sẽ tạo ra một cửa sổ popup khi ta rê chuột vào liên kết được chỉ định.
Phiên bản đầy đủ: jsB@nk » Trình duyệt » Cửa sổ » Popup khi rê chuột
URL: https://www.javascriptbank.com/popup-onmouseover.html
<script language="JavaScript"><!-- hidingvar newwindow;function showWindow(){ newwindow = window.open("", "newwindow", "toolbar=no,width=300,height=25,top=30,left=30"); newwindow.document.open(); newwindow.document.write("<html><title>The "pop-up window"<\/title><body bgcolor='#C0C0C0' style='margin-left:25px;margin-right:25px;text-align:center' text='#008080'><em>Here is more interesting and useful information for your visitors!<\/em><\/body><\/html>"); newwindow.document.close();}function closeWindow(){ newwindow.close(); }// --></script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->
<a href="http://javascriptbank.com" target="_blank" onclick="return false" style="text-decoration: none;" onmouseover="return showWindow();" onmouseout="return closeWindow();">Mouse over here to see how it works.</a><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->