I am using bootstrap3 datetimepicker.I got the documentation from
https://eonasdan.github.io/bootstrap-datetimepicker/
Its says
Note All functions are accessed via the data attribute e.g. $('#datetimepicker').data("DateTimePicker").FUNCTION()
What is its meaning.I cant understand it.
My js file containes this code
<script type="text/javascript">
$(function () {
$('#datetimepicker3').datetimepicker({
format: 'LT'
});
});
</script>
What changes should i make in this. Please help me