Guest User

Untitled

a guest
Jun 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3.  
  4. <head>
  5. <meta charset="UTF-8">
  6.  
  7. <title>Calendar Picker</title>
  8.  
  9. <script type="text/javascript" src="jquery-1.4.4.min.js"></script>
  10. <script type="text/javascript" src="Calendar.js"></script>
  11. <link href="Calendar.css" rel="stylesheet" type="text/css">
  12.  
  13. <script type="text/javascript">
  14. cal = null;
  15.  
  16. function showCalendar(id) {
  17. if (cal != null) {
  18. cal.showOrHide();
  19. return;
  20. }
  21. cal = new Calendar({relativeElementId: id});
  22. }
  23.  
  24. </script>
  25.  
  26. </head>
  27.  
  28. <body>
  29. <input id="calText" type="text" name="cal" onclick="showCalendar(this.id)"/>
  30. </body>
  31.  
  32. </html>
Add Comment
Please, Sign In to add comment