Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1.  
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <title>Ejercicio 18 - Utilidades, Calendario</title>
  7. <link href="ejercicio18.css" rel="stylesheet" type="text/css"/>
  8. <script src="calendar.js" type="text/javascript"></script>
  9. <script src="calendar-es.js" type="text/javascript"></script>
  10. <script src="calendar-setup.js" type="text/javascript"></script>
  11. </head>
  12.  
  13. <body>
  14.  
  15. <p></p>
  16. <input type="hidden" name="fecha" id="fecha" />
  17. <span style="background-color: #ffc; cursor:default; padding:.3em; border:thin solid #ff0; text-decoration:underline; color: blue;"
  18. onmouseover="this.style.cursor='pointer'; this.style.cursor='hand'; this.style.backgroundColor='#ff8'; this.style.textDecoration='none';"
  19. onmouseout="this.style.backgroundColor='#ffc'; this.style.textDecoration='underline';"
  20. id="fecha_usuario">
  21. Pincha aqu� para seleccionar la fecha
  22. </span>
  23.  
  24.  
  25. <script type="text/javascript">
  26. Calendar.setup({
  27. inputField: "fecha",
  28. ifFormat: "%d/%m/%Y",
  29. weekNumbers: false,
  30. displayArea: "fecha_usuario",
  31. daFormat: "%A, %d de %B de %Y"
  32. });
  33. </script>
  34.  
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement