HTML
CSS
JAVASCRIPT
BOOTTRICK
LATEST BLOG
CODE SHARE
JSON VIEWER
LATEST JOBS
Online Training
jquery datepicker
User
HTML
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery UI Datepicker</title> <link rel="stylesheet" href="https://code.jquery.com/ui/1.13.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-3.6.0.js"></script> <script src="https://code.jquery.com/ui/1.13.1/jquery-ui.js"></script> </head> <body> <!--For Datepicker Field--> <center> <h1>jquery datepicker Default</h1> Date: <input type="text" id="datepicker" placeholder="mm/dd/yyyy"> </center> </body> </html>
CSS
JavaScript
$(function() { //for datepicker $( "#datepicker" ).datepicker(); });