Revision 1, 1.0 kB
(checked in by ixs, 16 years ago)
|
initial checkin of RH revision
|
Line | |
---|
1 |
<html> |
---|
2 |
<head> |
---|
3 |
<title>Tooltips, Popups, Javascript, Dhtml - BoxOver</title> |
---|
4 |
<script src="calendar.js"></script> |
---|
5 |
<style> |
---|
6 |
input {border:1px solid #ABABAB} |
---|
7 |
</style> |
---|
8 |
</head> |
---|
9 |
<body style="font:14px/20px Verdana"> |
---|
10 |
|
---|
11 |
<DIV style="BORDER: #558844 1px solid;WIDTH:300px;padding:20px; color:#ABABAB"> |
---|
12 |
<p>The form below doesn't actually do anything, but demonstrates the purpose of the calendar.</p> |
---|
13 |
|
---|
14 |
<p>Click on the "Date of birth" text field to see the calendar in action.</p> |
---|
15 |
</DIV> |
---|
16 |
|
---|
17 |
<form action=""> |
---|
18 |
<table style="font:bold 14px/20px Verdana" cellpadding="5px"> |
---|
19 |
<tr> |
---|
20 |
<td> |
---|
21 |
Name |
---|
22 |
</td> |
---|
23 |
<td> |
---|
24 |
<input type="text"> |
---|
25 |
</td> |
---|
26 |
</tr> |
---|
27 |
<tr> |
---|
28 |
<td> |
---|
29 |
Date of birth |
---|
30 |
</td> |
---|
31 |
<td> |
---|
32 |
<input type="text" value="dd/mm/yy" onfocus="this.select();lcs(this)" onclick="event.cancelBubble=true;this.select();lcs(this)"> |
---|
33 |
</td> |
---|
34 |
</tr> |
---|
35 |
</table> |
---|
36 |
<input type="submit" value="A test submit button"> |
---|
37 |
</form> |
---|
38 |
|
---|
39 |
<a href="http://calendar.swazz.org">Swazz javascript calendar home</a> |
---|
40 |
</body> |
---|
41 |
</html> |
---|