Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.69 KB | None | 0 0
  1. <html lang="en">
  2. <head>
  3. <title>Date Thing</title>
  4. <link href="jquery-ui-1.10.4.custom/css/start/jquery-ui-1.10.4.custom.css" rel="stylesheet" type="text/css"/>
  5. <script type="text/javascript" src="jquery-ui-1.10.4.custom/js/jquery-1.10.2.js"></script>
  6. <script type="text/javascript" src="jquery-ui-1.10.4.custom/js/jquery-ui-1.10.4.custom.js"></script>
  7. <script type="text/javascript" src="jquery-ui-1.10.4.custom/js/jquery-ui-1.10.4.custom.min.js"></script>
  8. <script type="text/javascript">
  9. $(document).ready(function () {
  10.  
  11. $( "#datepickerID" ).datepicker({
  12. changeYear: true,
  13. })
  14. });
  15. </script>
  16. </head>
  17. <body>
  18. <p>Date: <input type="text" id="datepickerID"></p>
  19. </body>
  20. </html>
  21.  
  22. <?php
  23. include('sess.php');
  24. ?>
  25. <!DOCTYPE html>
  26. <html lang="en">
  27. <head>
  28. <title>PAGE TITLE</title>
  29. <link rel="stylesheet" type="text/css" href="bootstrap.css">
  30. <link rel="stylesheet" type="text/css" href="bootstrap.theme.css">
  31.  
  32. <link href="jquery-ui-1.10.4.custom/css/start/jquery-ui-1.10.4.custom.css" rel="stylesheet" type="text/css"/>
  33.  
  34. <script type="text/javascript" src="jquery-ui-1.10.4.custom/js/jquery-1.10.2.js"></script>
  35. <script type="text/javascript" src="jquery-ui-1.10.4.custom/js/jquery-ui-1.10.4.custom.js"></script>
  36. <script type="text/javascript" src="jquery-ui-1.10.4.custom/js/jquery-ui-1.10.4.custom.min.js"></script>
  37.  
  38. <script type="text/javascript">
  39.  
  40. $(document).ready(function () {
  41.  
  42. $( "#datepickerID" ).datepicker({
  43. changeYear: true,
  44. })
  45.  
  46. });
  47. </script>
  48. </head>
  49. <body>
  50. <form name="form1" action="http://*****/******/redirect1.php" onsubmit="return validateForm();" method="get">
  51. <p>Date: <input type="text" id="datepickerID"></p>
  52. </form>
  53. </body>
  54. </html>
  55.  
  56. <?php
  57. include('sess.php');
  58. ?>
  59. <html lang="en">
  60. <head>
  61. <title>PAGE TITLE</title>
  62. <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
  63. <script src="//code.jquery.com/jquery-1.9.1.js"></script>
  64. <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
  65. <link rel="stylesheet" href="/resources/demos/style.css">
  66. <script type="text/javascript">
  67. $(document).ready(function () {
  68. $( "#datepickerID" ).datepicker({
  69. changeYear: true,
  70. })
  71. });
  72. </script>
  73. </head>
  74. <body>
  75. <form name="form1" action="" onsubmit="return validateForm();" method="get">
  76. <p>Date: <input type="text" id="datepickerID"></p>
  77. </form>
  78. </body>
  79. </html>
  80.  
  81. <link rel="stylesheet" media="all" type="text/css" href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css" />
  82. <link rel="stylesheet" media="all" type="text/css" href="jquery-ui-timepicker-addon.css" />
  83.  
  84. <div class="example-container">
  85. <p>
  86. Add a simple datetimepicker to jQuery UI's datepicker
  87. </p>
  88. <div>
  89. <input type="text" name="basic_example_1" id="basic_example_1" value="" />
  90. </div>
  91. <pre>
  92. $('#basic_example_1').datetimepicker();
  93. </pre>
  94. </div>
  95. <!-- <script type="text/javascript" src="all.js"></script> --> <!-- Not in use just placed here for test purpose -->
  96. <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
  97. <script type="text/javascript" src="http://code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script>
  98. <script type="text/javascript" src="jquery-ui-timepicker-addon.js"></script>
  99.  
  100.  
  101. <script type="text/javascript">
  102. $(function() {
  103. $('#tabs').tabs();
  104.  
  105. $('.example-container > pre').each(function(i) {
  106. eval($(this).text());
  107. });
  108. });
  109.  
  110. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement