Simple Jquery UI Datepicker Step By Step


jquery-ui-datepicker-in-delhi

Simple Jquery UI Datepicker Step By Step

jquery-ui-datepicker-in-delhi

HTML CODE

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
  <script src="js/jquery-3.3.1.min.js"></script>
  <script src="js/jquery-ui.min.js"></script>
  <link href="js/jquery-ui.min.css" rel="stylesheet">
</head>

<body>
  <input type="text" id="date"><br>
</body>
</html>

JAVASCRIPT CODE

$("#date").datepicker();