Pour faciliter la saisie de mes internautes préférés j'ai voulu mettre en place un champ input avec comportement.
Ca marche sauf que malgré mes tentatives je n'arrive pas à afficher le calendrier et la "saisie" en français.
J'ai fait ceci :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Document sans nom</title>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script src="jquery.ui.datepicker-fr"></script><!-- fichier installé en local -->
</head>
<body>
<script>
$(function() {
$.datepicker.setDefaults( $.datepicker.regional[ "" ] );
$( "#datepicker" ).datepicker( $.datepicker.regional[ "fr" ] );
});
</script>
<div><input id="datepicker" type="text"></div>
</body>
</html>
C'est p'tet pas les bonnes librairies ou appels...Quelqu'un peut m'aider siouplé ?
Féfé