One option would be to override the _create method:
- $.ui.tooltip.prototype._create = function() {
- this._on({
-
-
- click: "open" // +
- });
-
- this.tooltips = {};
- }
I'm surprised there's no built-in way to do this.
If you use this method, make sure you update it when you update jQuery UI, or keep jQuery UI at 1.9.0
-- Kevin