I recently update my jquery library to 3.3.1 and since then the jquery.fileupload-ui breaks here
_initEventHandlers: function () {
$.blueimp.fileupload.prototype._initEventHandlers.call(this);
var filesList = this.element.find('.files'),
eventData = { fileupload: this };
filesList.find('.start a')
.live(
'click.' + this.options.namespace,
eventData,
this._startHandler
);
filesList.find('.cancel a')
.live(
'click.' + this.options.namespace,
eventData,
this._cancelHandler
);
filesList.find('.delete a')
.live(
'click.' + this.options.namespace,
eventData,
this._deleteHandler
);
},
My sense is that live
is deprecated.
How can I modify this code as a way to fix this ?
Kind regards