-
Notifications
You must be signed in to change notification settings - Fork 0
/
datepicker.html
37 lines (24 loc) · 900 Bytes
/
datepicker.html
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
<!DOCTYPE html>
<html>
<head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/cupertino/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://dynobox.googlecode.com/files/jquery.dynobox.0.8.js"></script>
<style>
#search {background: url('images/ico_search.gif') center right no-repeat;}
</style>
<script>
$(document).ready(function() {
$("#datepicker").datepicker();
$('#search').dynoBox();
});
</script>
</head>
<body style="font-size:62.5%;">
<div>
<input type="text" id='datepicker'>
<input type="text" id='search', title="this is random title text">
</div>
</body>
</html>