Search and Top Navigation
Ticket #4690: DatePicker Bug.html
File DatePicker Bug.html, 0.6 KB (added by erichmusick, July 16, 2009 02:22PM UTC)
Example
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready( function() {
$("input").datepicker({
});
$("input").datepicker("option", "minDate", new Date( 2009, 8, 31 ) );
});
</script>
</head>
<body>
<input type="text" name="date"/>
</body>
</html>
Download in other formats:
Original Format
File DatePicker Bug.html, 0.6 KB (added by erichmusick, July 16, 2009 02:22PM UTC)
Example
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready( function() {
$("input").datepicker({
});
$("input").datepicker("option", "minDate", new Date( 2009, 8, 31 ) );
});
</script>
</head>
<body>
<input type="text" name="date"/>
</body>
</html>