jQuery BlockUI Plugin clashing with jQuery UI

jQuery BlockUI Plugin clashing with jQuery UI

The methods for block and unblock in jQuery BlockUI Plugin clash with the jQuery UI datepicker.

  1. jQuery BlockUI Plugin
    // global $ methods for blocking/unblocking the entire page $.blockUI = function(opts) { install(window, opts); }; $.unblockUI = function(opts) { remove(window, opts); };
  1. jQuery UI datepicker
  2. this._showDatepicker(this._dialogInput[0]),$.blockUI&&$.blockUI(this.dpDiv),