<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>jQuery Datepicker</title>
<link href="jquery/jquery.datepick.css" rel="stylesheet">
<style>
body > iframe { display: none; }
</style>
<script src="jquery/jquery-1.11.1.js"></script>
<script src="jquery/jquery.plugin.js"></script>
<script src="jquery/jquery.datepick.js"></script>
<script>
$(function() {
$('#popupDatepicker').datepick();
});
</script>
</head>
<body>
<h1>jQuery Datepicker</h1>
<p>
This page demonstrates the very basics of the
<a href="http://keith-wood.name/datepick.html">jQuery Datepicker plugin</a>.
It contains the minimum requirements for using the plugin and
can be used as the basis for your own experimentation.
</p>
<p>
For more detail see the <a href="http://keith-wood.name/datepickRef.html">documentation reference</a> page.</p>
<p>A popup datepicker <input type="text" id="popupDatepicker"></p>
</body>
</html>