jQuery BlockUI Plugin clashing with jQuery UI
The methods for block and unblock in jQuery BlockUI Plugin clash with the jQuery UI datepicker.
jQuery BlockUI Plugin
// global $ methods for blocking/unblocking the entire page $.blockUI = function(opts) { install(window, opts); }; $.unblockUI = function(opts) { remove(window, opts); };
- jQuery UI datepicker
- this._showDatepicker(this._dialogInput[0]),$.blockUI&&$.blockUI(this.dpDiv),