change date format in datetimepicker plugin?
how to change to australian date format for this example? http://开发者_高级运维trentrichardson.com/examples/timepicker/
Try this:
jQuery(".ClassName").datetimepicker({
showSecond: true,
timeFormat: 'hh:mm:ss',
dateFormat: 'yy-mm-dd'
});
You can define any date format above.
精彩评论