bonjour! j'aimerais afficher un calendrier dans un champ de formulaire mais j'yarrive pas,on m'a conseillé d'utiliser JQUERY mais je n'y connais rien j'ai seulement telechargé Jquery UI.
Comment faire si vous pouvez me guider svp!merci
<!doctype html>
<html lang="fr">
<head>
...
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script>
<link rel="stylesheet" href="TONCSS">
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker"></p>
</body>
</html>
Fait un copier coller de ce code.