-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
38 lines (38 loc) · 813 Bytes
/
example.html
File metadata and controls
38 lines (38 loc) · 813 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
36
37
38
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" />
<title>Simple Tooltip Example</title>
<link rel="stylesheet" href="style.css" />
<script type="text/javascript" src="simpletooltip.js"></script>
<script>
function initToolTip()
{
simpleTooltip('first_name', 'Nombre del usuario.');
simpleTooltip('last_name', 'Apellido del usuario.');
simpleTooltip('email', 'Correo Electronico.');
}
</script>
</head>
<body onload="initToolTip()">
<table>
<tr>
<td>Name:</td>
<td>
<input type="text" id="first_name" />
</td>
</tr>
<tr>
<td>Lastname:</td>
<td>
<input type="text" id="last_name" />
</td>
</tr>
<tr>
<td>Email:</td>
<td>
<input type="text" id="email" />
</td>
</tr>
</table>
</body>
</html>