i18n.seconds
Since: DateTime 1.0.0
Label for the seconds selection.
Please note - this property requires the DateTime extension for DataTables.
Description
This value is used as a label next to the selection for the value of seconds within DateTime.
Type
Default
- Value:
'Second'
Example
Change the value for i18n.seconds
:
$(document).ready(function () {
new DateTime(document.getElementById('test'), {
format: 'HH:mm:ss',
i18n: {
seconds: 's'
}
});
});