mugifly / jquery-simple-datetimepicker

Date & time picker for jQuery, It's simple & clean.
http://mugifly.github.com/jquery-simple-datetimepicker
Other
260 stars 182 forks source link

Blanks #87

Closed rstacruz closed 10 years ago

rstacruz commented 10 years ago

Is it possible to have blank dates? That is:

<input type="text" name="date" value="">
<script>$('[name="date"]').appendDtpicker();</script>

...should have a blank input field, instead of pre-populating it with a time/date.

NinjaMeTimbers commented 10 years ago

You can:

$('[name="date"]').appendDtpicker({
    autodateOnStart: false,
});