"time+1"
Bootstrap 4.1.1 Snippet by shmaldesign

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var d = new Date(); var curr_date = d.getDate() + 1; var curr_month = d.getMonth() + 1; var curr_year = d.getFullYear(); document.getElementById("demo").innerHTML = curr_date + "." + curr_month + "." + curr_year; </script> </body> </html>

Related: See More


Questions / Comments: