[ Index ]

PHP Cross Reference of vtigercrm-6.1.0

title

Body

[close]

/layouts/vlayout/modules/Settings/Workflows/resources/libraries/jquery.datepick.package-4.1.0/ -> datepickBasic.html (source)

   1  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
   2  <html>
   3  <head>
   4  <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
   5  <title>jQuery Datepicker</title>
   6  <link type="text/css" href="jquery.datepick.css" rel="stylesheet">
   7  <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
   8  <script type="text/javascript" src="jquery.datepick.js"></script>
   9  <script type="text/javascript">
  10  $(function() {
  11      $('#popupDatepicker').datepick();
  12      $('#inlineDatepicker').datepick({onSelect: showDate});
  13  });
  14  
  15  function showDate(date) {
  16      alert('The date chosen is ' + date);
  17  }
  18  </script>
  19  </head>
  20  <body>
  21  <h1>jQuery Datepicker</h1>
  22  <p>This page demonstrates the very basics of the
  23      <a href="http://keith-wood.name/datepick.html">jQuery Datepicker plugin</a>.
  24      It contains the minimum requirements for using the plugin and
  25      can be used as the basis for your own experimentation.</p>
  26  <p>For more detail see the <a href="http://keith-wood.name/datepickRef.html">documentation reference</a> page.</p>
  27  <p>A popup datepicker <input type="text" id="popupDatepicker"></p>
  28  <p>Or inline</p>
  29  <div id="inlineDatepicker"></div>
  30  </body>
  31  </html>


Generated: Fri Nov 28 20:08:37 2014 Cross-referenced by PHPXref 0.7.1