+ 6
how can insert calendar and time functions in my website
A calendar showing the current day, month and year also the time in hh:mm:ss
2 Answers
+ 6
Try
<script>document.write(new Date().toLocaleDateString()); </script>
<script>document.write(new Date().toLocaleTimeString()); </script>
+ 3
Thanks