Bootstrap datepicker example text input with specifying date format

Bootstrap datepicker example text input with specifying date format

In this tutorial you will know how to use simple datepicker in your form. Using datepicker, you can easily choose the date from a calendar instead of typing manually.Here in below example we use bootstrap datepicker which is going most popular and has full-featured libraries.

The following example will tell you how to set datepicker using bootstrap datepicker.

  1. <html>
  2. <head>
  3. <title>Bootstrap datepicker example text input with specifying date format</title>
  4.     <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
  5. <link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.5.0/css/bootstrap-datepicker.css" rel="stylesheet">
  6. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>
  7. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
  8. <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.5.0/js/bootstrap-datepicker.js"></script> </head>
  9. <body>
  10. <input class="form-control" type="text" placeholder="click to show datepicker" id="example1">
  11. <script type="text/javascript">
  12. // When the document is ready
  13. $(document).ready(function () {
  14. $('#example1').datepicker({
  15. format: "dd/mm/yyyy"
  16. });
  17. });
  18. </script>
  19. </body>
  20. </html>

If you need to auto closing the date picker which means datepicker immediately closed after choosing a date then you will have to set autoclose true :

  1. $('#example1').datepicker({
  2. autoclose: true,
  3. format: "dd/mm/yyyy"
  4. });

Phone: (+91) 8800417876
Noida, 201301