- datepickerそのものをdisabledにする
app.js
$( "#datepicker" ).datepicker( "option", "disabled", true );
- 全ての日付をdisabledにする
app.js
$( "#datepicker" ).datepicker('option','beforeShowDay',function(date){
return false;
});
Go to list of users who liked
More than 5 years have passed since last update.
$( "#datepicker" ).datepicker( "option", "disabled", true );
$( "#datepicker" ).datepicker('option','beforeShowDay',function(date){
return false;
});
Register as a new user and use Qiita more conveniently
Go to list of users who liked