par
Kran » 10 oct. 2009, 22:43
Faudrait un p'ti peu de css et un p'ti peu de javascript...
Un embryon ci-dessous pour comprendre la principe :
<html>
<body>
<input type="texte" name="ma_date" onclick="document.getElementById('calendrier').style.display='block';" />
<div id="calendrier" style="{display:none;z-index:99;border:1px solid black;background-color:#eee;height:200px;width:200px;}" onmouseout="this.style.display='none';">
tralala
</div>
</body>
</html>
Faudrait un p'ti peu de css et un p'ti peu de javascript...
Un embryon ci-dessous pour comprendre la principe :
[html]<html>
<body>
<input type="texte" name="ma_date" onclick="document.getElementById('calendrier').style.display='block';" />
<div id="calendrier" style="{display:none;z-index:99;border:1px solid black;background-color:#eee;height:200px;width:200px;}" onmouseout="this.style.display='none';">
tralala
</div>
</body>
</html>[/html]