test.html - jscancer - Javascript crap (relatively small)
(HTM) git clone git://git.codemadness.org/jscancer
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
test.html (2290B)
---
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5 <title>jsdatepicker</title>
6 <link rel="stylesheet" type="text/css" href="datepicker.css" />
7 </head>
8 <body>
9
10 <br/>
11 <br/>
12 <br/><br/>
13 <br/>
14 <br/>
15 <br/>
16 <br/>
17 <br/>
18 <br/>
19 <br/>
20 <br/>
21 <br/>
22
23 <form method="post" action="">
24
25 <input type="date" class="date" />
26 <input type="date" class="date" min="2017-01-01" />
27 <input type="date" class="date" max="2018-12-31" />
28
29 <br/>
30
31 <label for="os">OS: </label>
32 <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
33
34 <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
35
36 <input type="date" class="date" min="2016-01-01" max="2016-12-31" style="position: absolute; top: 100px;right: 20px" /><br/>
37
38 <input type="date" class="date" min="2016-01-01" max="2016-12-31" style="position: fixed; top: 200px;right: 20px" /><br/>
39
40 <div style="position: absolute;top: 300px; right: 20px">
41 <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
42 </div>
43
44 <div style="position: fixed;top: 400px; right: 20px">
45 <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
46 </div>
47
48 <div style="position: absolute;top: 1000px; left: 400px">
49 <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
50 </div>
51
52
53 <div style="position: absolute;top: 1300px; right: 20px">
54 <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
55 </div>
56
57
58 <table>
59 <tr><td>
60 test
61 </td><td></td></tr>
62 <tr><td></td><td>
63 <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
64 </td></tr>
65 </table>
66
67 <table style="float:right">
68 <tr><td>
69 test
70 </td><td></td></tr>
71 <tr><td></td><td>
72 <input type="date" class="date" min="2016-01-01" max="2016-12-31" /><br/>
73 </td></tr>
74 </table>
75
76 </form>
77
78 <div id="testabsolute" style="position: absolute;overflow: scroll;height: 500px;width: 500px;right: 0;top: 2000px;background-color: #eee;">
79
80 <div style="height: 1000px; background-color: #ccc;"> </div><br/>
81
82 <input type="date" class="date" min="2016-01-01" max="2016-12-31" style="background-color: green" />
83 </div>
84
85 <script type="text/javascript" src="datepicker.js"></script>
86
87 </body>
88 </html>