I was having the same problem, there are 2 things that you can do that I have found:
1) install Enable jQuery Migrate Helper
2) anywhere that you have jQuery(…).live, change it to jQuery(…).on, for reference check here: https://stackoverflow.com/questions/14354040/jquery-1-9-live-is-not-a-function. I have found that if you are using an element that is being appended, that if you use body as your initial selector that it works well ex. jQuery(‘.test’).live changes to jQuery(‘body’).on(‘event’, ‘.test’, funstion(){});
-
This reply was modified 4 years, 6 months ago by danyg79.