Add time stamp from calendar to text field
by 8ogdan
HTML
<script src="//code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
<textarea id="updateTextField">Add date at the end of sentence.</textarea>
<input type="input" id="fieldA" class="datepicker" style="display:none;" />
CSS
#updateTextField{
width:250px;
}
JavaScript
$("#fieldA").datepicker(
{
showOn: "button",
buttonText: "Day",
inline: true,
altField: '#updateTextField',
onSelect: function()
{
var dateObject = $(this).datepicker('getDate');
$("#updateTextField").val("I would like my items to be delivered by " + dateObject.getDate() + "-" + dateObject.getMonth() + "-" + dateObject.getFullYear() );
}
});