-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfieldhints_example.html
More file actions
31 lines (29 loc) · 981 Bytes
/
Copy pathfieldhints_example.html
File metadata and controls
31 lines (29 loc) · 981 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
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<script src="fieldhints.js" type="text/javascript"></script>
<script src="prototype.js" type="text/javascript"></script>
<link href="fieldhints.css" rel="Stylesheet" type="text/css"></link>
</head>
<body onload="FieldHints.initialize()">
<form action="">
<p>
<label for="name">
Name:
<br/>
</label>
<input type="text" id="name" class="class1 class2"/>
<label for="name" class="hintText">Firstname Lastname</label>
</p>
<p>
<label>
Phone number:
<br/>
<input type="text" id="phone" />
</label>
<label for="phone" class="hintText">+1 (416) 555-1212</label>
</p>
</form>
</body>
</html>