jquery fileupload.js this._on is not a function error

126 Views Asked by At
_initEventHandlers: function () {
        if (this._isXHRUpload(this.options)) {
            this._on(this.options.dropZone, {
                dragover: this._onDragOver,
                drop: this._onDrop,
                // event.preventDefault() on dragenter is required for IE10+:
                dragenter: this._onDragEnter,
                // dragleave is not required, but added for completeness:
                dragleave: this._onDragLeave
            });
            this._on(this.options.pasteZone, {
                paste: this._onPaste
            });
        }
        if ($.support.fileInput) {
            this._on(this.options.fileInput, {
                change: this._onChange
            });
        }

this code inside Jquery.fileupload.js but throw error:

this._on() is not a function

what can i do?

0

There are 0 best solutions below