jquery-ui/demos/datepicker/default.html

22 lines
639 B
HTML
Raw Normal View History

2008-12-23 13:59:00 +00:00
<!doctype html>
<html lang="en">
<head>
<title>jQuery UI Datepicker - Default Demo</title>
<link type="text/css" href="../demos.css" rel="stylesheet" />
<link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
<script type="text/javascript" src="../../ui/ui.core.js"></script>
<script type="text/javascript" src="../../ui/ui.datepicker.js"></script>
<script type="text/javascript">
$(function() {
$("#datepicker").datepicker();
2008-12-29 02:10:15 +00:00
});
2008-12-23 13:59:00 +00:00
</script>
</head>
<body>
<input type="text" id="datepicker" />
</body>
</html>