mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
21 lines
699 B
HTML
21 lines
699 B
HTML
<html>
|
|
<head>
|
|
<title>Only core files for easy debug</title>
|
|
<link rel="stylesheet" href="../../../themes/ui.datepicker.css" type="text/css" media="screen" title="default" charset="utf-8">
|
|
</head>
|
|
<body>
|
|
<input type="text" name="testing" value="click" id="testing" />
|
|
|
|
<!-- Include jQuery -->
|
|
<script src="../../../../jquery/jquery-1.2.6.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<!-- Include UI Datepicker -->
|
|
<script src="../../../source/ui.datepicker.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
$(function(){
|
|
$('#testing').datepicker({ yearRange: '-80:+0' });
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |