Datepicker in Drupal 7
drupal datepicker- Add code in php.tpl.
drupal_add_library('system', 'ui.datepicker'); drupal_add_js("(function ($) { $('.datepicker').datepicker(); $('.datepicker').datepicker('option', 'dateFormat', 'M d, yy'); })(jQuery);", array('type' => 'inline', 'scope' => 'footer', 'weight' => 5));
- Text input field has datepicker class
<input type="text" class="datepicker" name="renewaldate" />
Written on October 13, 2018