I created a DatePicker in mobile jquery and i want to disable Past Dates Before yesterday. I want to keep only 2 options available in the DatePicker Dialog, that is of Today and Yesterday only. Here Below is My Code.. Thanks
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<link rel="stylesheet" href="./cs/jquery.mobile-1.4.5.min.css" />
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.4.5.min.js"></script>
<script src="cordova.js"></script>
</head>
<body>
<div id="daily" data-role="page" class="ui-page slidehelp" data-theme="a">
<div role="main" class="ui-content" data-theme="b">
<form>
<input name="date" type="date" placeholder="Date" id="datepicker" minDate: 0 >
</form>
</div>
</div>
<script>
$(document).ready(function () {
$('input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"]').each(function () {
var el = this, type = $(el).attr('type');
if ($(el).val() == '') $(el).attr('type', 'text');
$(el).focus(function () {
$(el).attr('type', type);
el.click();
});
$(el).blur(function () {
if ($(el).val() == '') $(el).attr('type', 'text');
});
});
});
</script>
</body>
</html>
Basically, you may use the
beforeShowDay
function, which is invoked for each date shown on thedatepicker
. Here is already a great answer with some more details and how to use it: JQuery DatePicker and beforeShowDayBTW, if you need to enable just only two dates, why not use a nice
fieldset
with two radio buttons?Beside this, here is the full example with the
datepicker
styled for jQuery Mobile by Salman Arshad, credits: jQuery UI Datepicker for jQuery MobileEDIT:
From your code it seems you would need the native approach, i.e. HTML5
input type="date"
. In this case, the solution is even simpler:...but the current browser implementation is not always perfect. You may refer to: Can I use... Date and time input types for the compatibility and issues.