jQuery datepicker options and errors with WordPress


//Error
jQuery(…).datepicker is not a function

//Solution
var $j = jQuery.noConflict();
$j( “.date_picker” ).datepicker({
});
Some of options

https://jqueryui.com/datepicker/#dropdown-month-year

//Show year and months
changeMonth: true,
changeYear: true

//Desable previous dates
minDate: 0

Date picker in wordpress admin dashboard

admin-datepicker

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s