You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It was working beautifully. before I update jQuery, Just updating to jQuery version 3.1.1. it has broken.
when I click for upload it shows error : TypeError: this.context is undefined
I checked jQuery.AjaxFileUpload.js is updated in my code.
The text was updated successfully, but these errors were encountered:
This issue can easily be fixed so that it works with jQuery 3.4.1. You just need to edit line 138 in the js file like following:
before: $('#'+frame_id).load(function() {
after: $('#'+frame_id).on('load', function() {
It was working beautifully. before I update jQuery, Just updating to jQuery version 3.1.1. it has broken.
when I click for upload it shows error :
TypeError: this.context is undefined
I checked jQuery.AjaxFileUpload.js is updated in my code.
The text was updated successfully, but these errors were encountered: