1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <!DOCTYPE html>
<html lang="fr">
<head>
<link rel="stylesheet" href="jquery-ui/css/smoothness/jquery-ui-1.8.20.custom.css">
<script src="jquery-ui/js/jquery-1.7.2.min.js"></script>
<script src="jquery-ui/js/jquery-ui-1.8.20.custom.min.js"></script>
<script src="jquery-ui/js/jquery.ui.datepicker-fr.js"></script>
<script>
$(document).ready(function(){
$('#date').datepicker({dateFormat: 'yy-mm-dd'});
});
</script>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<form>
<label for="date">Date:</label>
<input type="text" name="date" id="date">
</form>
</body>
</html> |