-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample76.htm
More file actions
executable file
·35 lines (28 loc) · 926 Bytes
/
example76.htm
File metadata and controls
executable file
·35 lines (28 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html><head><title>Plug-in JavaScript: Example 76</title>
<script src="PJ.js"></script>
<script>Initialize()</script>
</head><body>
<b>How to become a millionaire:<ul>
<li><font size='+4'> </font>
<span id='a'>Win the lottery</span></li>
<li><font size='+4'> </font>
<span id='b'>Inherit the money</span></li>
<li><font size='+4'> </font>
<span id='c'>Marry a millionaire</span></li>
<li><font size='+4'> </font>
<span id='d'>Become a movie or pop star</span></li>
<li><font size='+4'> </font>
<span id='e'>Invest $130/month in stocks for 40 years!</span></li>
</ul></b>
<script>
window.onload = function()
{
O(Array('a', 'b', 'c', 'd', 'e'), 'onmouseover', ripple)
function ripple()
{
TextRipple(this, 1, 500)
}
}
</script>