You have SyntaxError: unexpected token: '{'"
and Double Quote would not be used for "dateFormat"
, It should be dateFormat
Please correct Syntex in
Wrong [Used in your code]
$("#birthday").datepicker() {
"dateFormat" : "mm-dd-yyyy"
});
Right
$( "#birthday" ).datepicker({
dateFormat: 'mm-dd-yy'
});
Example
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Datepicker - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.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>
<script>
$( function() {
$( "#datepicker" ).datepicker({
dateFormat: 'mm-dd-yy'
})
} );
</script>
</head>
<body>
<p>Date: <input placeholder="mm-dd-yyyy" type="text" id="datepicker"></p>
</body>
</html>