How does jQuery Datepicker onchange event work?


To work with jQuery Datepicker onchange(), use the datepicker onSelect event. This will show which date we added currently and changed to.

Example

You can try to run the following code to learn how to work jQuery Datepicker onchange:

Live Demo

<!Doctype html>
<html>
<head>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  <script>
  $( function() {
   
  $(".date").datepicker({
    onSelect: function(dateText) {
      display("Selected date: " + dateText + ", Current Selected Value= " + this.value);
      $(this).change();
    }
  }).on("change", function() {
    display("Change event");
  });

  function display(msg) {
    $("<p>").html(msg).appendTo(document.body);
  }
  });
 
  </script>
</head>
<body>
 
Date: <input type='text' class='date' id="datepicker">

</body>
</html>

Updated on: 11-Dec-2019

13K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements